You are here

function trigger_theme in Drupal 6

Same name and namespace in other branches
  1. 7 modules/trigger/trigger.module \trigger_theme()

Implementation of hook_theme().

File

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',
    ),
  );
}