Skip to content

Instantly share code, notes, and snippets.

@SupermanScott
Created April 12, 2010 23:04
Show Gist options
  • Save SupermanScott/364110 to your computer and use it in GitHub Desktop.
Save SupermanScott/364110 to your computer and use it in GitHub Desktop.
function MY_MODULE_plugins_alter(&$plugins) {
$plugins['row']['node'] = array_merge(
$plugins['row']['node'],
array(
'handler' => 'my_new_handlers',
'path' => drupal_get_path('module', 'MY_MODULE') . '/views',
'parent' => 'node',
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment