function trigger_theme

7.x trigger.module trigger_theme()
6.x trigger.module trigger_theme()

Implementation of hook_theme().

File

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.

Code

function trigger_theme() {
  return array(
    'trigger_display' => array(
      'arguments' => array('element'),
      'file' => 'trigger.admin.inc',
    ),
  );
}