diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-12-28 12:02:52 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-12-28 12:02:52 +0000 |
commit | a88c178b91ff1342377b89b68965dcf7aaac725a (patch) | |
tree | f2769b94c1e6680d79c3a6cb089066f9cd27153f /modules/trigger/trigger.install | |
parent | faf7ebafce3da7a285e24a17c199e01c37d0fafb (diff) | |
download | brdo-a88c178b91ff1342377b89b68965dcf7aaac725a.tar.gz brdo-a88c178b91ff1342377b89b68965dcf7aaac725a.tar.bz2 |
- Patch #204221 by webernet: code style fixes.
Diffstat (limited to 'modules/trigger/trigger.install')
-rw-r--r-- | modules/trigger/trigger.install | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/modules/trigger/trigger.install b/modules/trigger/trigger.install index bca11130c..981ad5dbf 100644 --- a/modules/trigger/trigger.install +++ b/modules/trigger/trigger.install @@ -27,27 +27,27 @@ function trigger_schema() { $schema['trigger_assignments'] = array( 'description' => t('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.'), - ), - '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.'), - ), - 'aid' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - 'description' => t("Primary Key: Action's {actions}.aid."), - ), + '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.'), + ), + '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.'), + ), + 'aid' => array( + 'type' => 'varchar', + 'length' => 255, + 'not null' => TRUE, + 'default' => '', + 'description' => t("Primary Key: Action's {actions}.aid."), + ), 'weight' => array( 'type' => 'int', 'not null' => TRUE, |