You are here

function flag_lists_install in Flag Lists 7.3

Same name and namespace in other branches
  1. 6 flag_lists.install \flag_lists_install()
  2. 7 flag_lists.install \flag_lists_install()

Implements hook_install().

File

./flag_lists.install, line 177
The Flag lists module install file.

Code

function flag_lists_install() {

  // Set up our default template.
  db_insert('flag_lists_types')
    ->fields(array(
    'name' => 'fl_template',
  ))
    ->execute();
}