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