root / drupal7 / sites / all / modules / print / print_ui / print_ui.install @ 76bdcd04
1 |
<?php |
---|---|
2 |
|
3 |
/** |
4 |
* @file |
5 |
* Install, update and uninstall functions for the print UI module. |
6 |
* |
7 |
* @ingroup print |
8 |
*/ |
9 |
|
10 |
/** |
11 |
* Implements hook_enable(). |
12 |
*/ |
13 |
function print_ui_enable() { |
14 |
// Module weight. |
15 |
db_update('system') |
16 |
->fields(array( |
17 |
'weight' => 1, |
18 |
)) |
19 |
->condition('type', 'module') |
20 |
->condition('name', 'print_ui') |
21 |
->execute(); |
22 |
} |