function flag_lists_install in Flag Lists 7
Same name and namespace in other branches
- 6 flag_lists.install \flag_lists_install()
- 7.3 flag_lists.install \flag_lists_install()
Implements hook_install().
File
- ./
flag_lists.install, line 178 - 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();
}