Pathologic was missing because of a .git folder inside.
[yaffs-website] / web / modules / contrib / embed / embed.api.php
1 <?php
2
3 /**
4  * @file
5  * Hooks provided by the Embed module.
6  */
7
8 /**
9  * @addtogroup hooks
10  * @{
11  */
12
13 /**
14  * Alter the embed type plugin definitions.
15  *
16  * @param array &$plugins
17  *   An associative array containing the embed type plugin definitions keyed by
18  *   plugin ID.
19  *
20  * @see \Drupal\embed\EmbedType\EmbedTypeManager
21  */
22 function hook_embed_type_plugins_alter(array &$plugins) {
23   if (isset($plugins['entity'])) {
24     $plugins['entity']['label'] = 'A better label for embedded entities';
25   }
26 }
27
28 /**
29  * @} End of "addtogroup hooks".
30  */