/[drupal]/contributions/modules/forms_no_js/forms_no_js.install
ViewVC logotype

Contents of /contributions/modules/forms_no_js/forms_no_js.install

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download) (as text)
Tue May 22 21:46:25 2007 UTC (2 years, 6 months ago) by budda
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-5
File MIME type: text/x-php
drupal 5.x update from http://drupal.org/node/119738
1 <?php
2 // $Id$
3
4 /**
5 * Implementation of hook_install().
6 */
7
8 function forms_no_js_install() {
9 switch ($GLOBALS['db_type']) {
10 case 'mysql':
11 case 'mysqli':
12 db_query("UPDATE {system} SET weight = 1 WHERE name = 'forms_no_js' AND type='module'");
13 }
14 }
15
16 /**
17 * Implementation of hook_uninstall().
18 */
19 function forms_no_js_uninstall() {
20 variable_del('forms_no_js_collapsible');
21 variable_del('forms_no_js_resizable');
22 variable_del('forms_no_js_autocomplete');
23 }

  ViewVC Help
Powered by ViewVC 1.1.2