function trigger_theme
Same name and namespace in other branches
- 7.x drupal-7.x/modules/trigger/trigger.module \trigger_theme()
Implementation of hook_theme().
Archivo
- drupal-6.x/
modules/ trigger/ trigger.module, line 156 - Enables functions to be stored and executed at a later time when triggered by other modules or by one of Drupal's core API hooks.
Código
function trigger_theme() {
return array(
'trigger_display' => array(
'arguments' => array('element'),
'file' => 'trigger.admin.inc',
),
);
}