Skip to content

Instantly share code, notes, and snippets.

@sebyoga
Created June 17, 2013 08:03
Show Gist options
  • Save sebyoga/5795338 to your computer and use it in GitHub Desktop.
Save sebyoga/5795338 to your computer and use it in GitHub Desktop.
#sites/all/modules/[TONMODULE]/tonmodule.module
function tonmodule_views_api() {
return array('api' => 3,'path' => drupal_get_path('modules', 'tonmodule') . '/includes/views',);
}
#sites/all/modules/[TONMODULE]/includes/views/monmodule.views.inc
function tonmodule_views_query_alter(&$view, &$query) {
if( $view->name == "Administrer" ) {
watchdog('monmodule', 'test');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment