diff modules/trigger/trigger.install @ 19:3edae6ecd6c6 6.9

Drupal 6.9
author Franck Deroche <franck@defr.org>
date Thu, 15 Jan 2009 10:15:56 +0100
parents c1f4ac30525a
children
line wrap: on
line diff
--- a/modules/trigger/trigger.install	Tue Dec 23 14:32:55 2008 +0100
+++ b/modules/trigger/trigger.install	Thu Jan 15 10:15:56 2009 +0100
@@ -1,5 +1,5 @@
 <?php
-// $Id: trigger.install,v 1.5 2007/12/28 12:02:52 dries Exp $
+// $Id: trigger.install,v 1.5.2.1 2009/01/06 15:46:38 goba Exp $
 
 /**
  * Implementation of hook_install().
@@ -25,34 +25,34 @@
  */
 function trigger_schema() {
   $schema['trigger_assignments'] = array(
-    'description' => t('Maps trigger to hook and operation assignments from trigger.module.'),
+    'description' => 'Maps trigger to hook and operation assignments from trigger.module.',
     'fields' => array(
       'hook' => array(
         'type' => 'varchar',
         'length' => 32,
         'not null' => TRUE,
         'default' => '',
-        'description' => t('Primary Key: The name of the internal Drupal hook upon which an action is firing; for example, nodeapi.'),
+        'description' => 'Primary Key: The name of the internal Drupal hook upon which an action is firing; for example, nodeapi.',
       ),
       'op' => array(
         'type' => 'varchar',
         'length' => 32,
         'not null' => TRUE,
         'default' => '',
-        'description' => t('Primary Key: The specific operation of the hook upon which an action is firing: for example, presave.'),
+        'description' => 'Primary Key: The specific operation of the hook upon which an action is firing: for example, presave.',
       ),
       'aid' => array(
         'type' => 'varchar',
         'length' => 255,
         'not null' => TRUE,
         'default' => '',
-        'description' => t("Primary Key: Action's {actions}.aid."),
+        'description' => "Primary Key: Action's {actions}.aid.",
       ),
       'weight' => array(
         'type' => 'int',
         'not null' => TRUE,
         'default' => 0,
-        'description' => t('The weight of the trigger assignment in relation to other triggers.'),
+        'description' => 'The weight of the trigger assignment in relation to other triggers.',
       ),
     ),
     'primary key' => array('hook', 'op', 'aid'),