Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // What's easier?
- $info = array();
- foreach (module_implements('my_hook') as $module) {
- $info += module_invoke($module, 'my_hook');
- }
- return $info;
- // OR
- return new Drupal\my_module\Plugin\Type\Thing()->getPluginDefinitions();
Advertisement
Add Comment
Please, Sign In to add comment