Created
June 17, 2013 08:03
-
-
Save sebyoga/5795338 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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