EclipseGc

Untitled

Jun 27th, 2012
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. // What's easier?
  2.  
  3. $info = array();
  4. foreach (module_implements('my_hook') as $module) {
  5.   $info += module_invoke($module, 'my_hook');
  6. }
  7. return $info;
  8.  
  9. // OR
  10.  
  11. return new Drupal\my_module\Plugin\Type\Thing()->getPluginDefinitions();
Advertisement
Add Comment
Please, Sign In to add comment