Version 1
[yaffs-website] / web / modules / contrib / entity_browser / entity_browser.api.php
diff --git a/web/modules/contrib/entity_browser/entity_browser.api.php b/web/modules/contrib/entity_browser/entity_browser.api.php
new file mode 100644 (file)
index 0000000..3c4b874
--- /dev/null
@@ -0,0 +1,77 @@
+<?php
+
+/**
+ * @file
+ * Hooks related to entity browser and it's plugins.
+ */
+
+/**
+ * @addtogroup hooks
+ * @{
+ */
+
+/**
+ * Alter the information provided in \Drupal\entity_browser\Annotation\EntityBrowserDisplay.
+ *
+ * @param array $displays
+ *   The array of display plugins, keyed on the machine-readable name.
+ */
+function hook_entity_browser_display_info_alter(array &$displays) {
+  $displays['modal_display']['label'] = t('Superb fancy stuff!');
+}
+
+/**
+ * Alter the information provided in \Drupal\entity_browser\Annotation\EntityBrowserWidget.
+ *
+ * @param array $widgets
+ *   The array of widget plugins, keyed on the machine-readable name.
+ */
+function hook_entity_browser_widget_info_alter(array &$widgets) {
+  $widgets['view_widget']['label'] = t('Views FTW!');
+}
+
+/**
+ * Alter the information provided in \Drupal\entity_browser\Annotation\SelectionDisplay.
+ *
+ * @param array $selection_displays
+ *   The array of selection display plugins, keyed on the machine-readable name.
+ */
+function hook_entity_browser_selection_display_info_alter(array &$selection_displays) {
+  $selection_displays['no_selection']['label'] = t('Nothing!');
+}
+
+/**
+ * Alter the information provided in \Drupal\entity_browser\Annotation\EntityBrowserWidgetSelector.
+ *
+ * @param array $widget_selectors
+ *   The array of widget selector plugins, keyed on the machine-readable name.
+ */
+function hook_entity_browser_widget_selector_info_alter(array &$widget_selectors) {
+  $widgets['tab_selector']['label'] = t('Tabs are for winners');
+}
+
+/**
+ * Alter the information provided in \Drupal\entity_browser\Annotation\EntityBrowserFieldWidgetDisplay.
+ *
+ * @param array $field_displays
+ *   The array of field widget display plugins, keyed on the machine-readable
+ *   name.
+ */
+function hook_entity_browser_field_widget_display_info_alter(array &$field_displays) {
+  $field_displays['rendered_entity']['label'] = t('Entity render system FTW');
+}
+
+/**
+ * Alter the information provided in \Drupal\entity_browser\Annotation\EntityBrowserWidgetValidation.
+ *
+ * @param array $validation_plugins
+ *   The array of widget validation plugins, keyed on the machine-readable
+ *   name.
+ */
+function hook_entity_browser_widget_validation_info_alter(array &$validation_plugins) {
+  $field_displays['not_null']['label'] = t('Not null fabulous validator');
+}
+
+/**
+ * @} End of "addtogroup hooks".
+ */