Pathologic was missing because of a .git folder inside.
[yaffs-website] / web / modules / contrib / media_entity / media_entity.api.php
1 <?php
2
3 /**
4  * @file
5  * Hooks related to media entity and it's plugins.
6  */
7
8 /**
9  * @addtogroup hooks
10  * @{
11  */
12
13 /**
14  * Alter the information provided in \Drupal\media_entity\Annotation\MediaType.
15  *
16  * @param array $types
17  *   The array of type plugins, keyed on the machine-readable name.
18  */
19 function hook_media_entity_type_info_alter(&$types) {
20   $types['youtube']['label'] = t('Youtube rocks!');
21 }
22
23 /**
24  * @} End of "addtogroup hooks".
25  */