You are here

function layouter_enable in Layouter - WYSIWYG layout templates 7

Implements hook_enable().

File

./layouter.install, line 11
Install file.

Code

function layouter_enable() {
  db_update('system')
    ->fields(array(
    'weight' => 10,
  ))
    ->condition('type', 'module')
    ->condition('name', 'layouter')
    ->execute();
}