From 2c552193154dd49a335b883019e216430a097790 Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Mon, 24 Aug 2009 00:14:23 +0000 Subject: #497118 by chx, catch, pwolanin, JoshuaRogers, and Jacob Singh: Remove the function registry. While the hope was that this would result in improved performance for low-end hosts, it comes at the expense of critical development experience problems and less benefit than something like APC. Class registry remains intact to facilitate autoloading. --- modules/trigger/trigger.module | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'modules/trigger') diff --git a/modules/trigger/trigger.module b/modules/trigger/trigger.module index d6fedc64f..c085741a0 100644 --- a/modules/trigger/trigger.module +++ b/modules/trigger/trigger.module @@ -40,6 +40,7 @@ function trigger_menu() { 'description' => 'Tell Drupal when to execute actions.', 'page callback' => 'trigger_assign', 'access arguments' => array('administer actions'), + 'file' => 'trigger.admin.inc', ); // Explicitly define the system menu item so we can label it "cron" rather @@ -50,6 +51,7 @@ function trigger_menu() { 'page arguments' => array('system'), 'access arguments' => array('administer actions'), 'type' => MENU_LOCAL_TASK, + 'file' => 'trigger.admin.inc', ); // We want contributed modules to be able to describe @@ -73,6 +75,7 @@ function trigger_menu() { 'page arguments' => array($module), 'access arguments' => array('administer actions'), 'type' => MENU_LOCAL_TASK, + 'file' => 'trigger.admin.inc', ); } $items['admin/structure/trigger/unassign'] = array( @@ -82,6 +85,7 @@ function trigger_menu() { 'page arguments' => array('trigger_unassign'), 'access arguments' => array('administer actions'), 'type' => MENU_CALLBACK, + 'file' => 'trigger.admin.inc', ); return $items; -- cgit v1.2.3