e0579b9338978f070c9a9484570537e7e0cba794
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / field_info_max_weight.twig
1 /**
2  * Implements hook_field_info_max_weight().
3  */
4 function {{ machine_name }}_field_info_max_weight($entity_type, $bundle, $context) {
5   $weights = array();
6
7   foreach (my_module_entity_additions($entity_type, $bundle, $context) as $addition) {
8     $weights[] = $addition['weight'];
9   }
10
11   return $weights ? max($weights) : NULL;
12 }