fullcalendar_options.install in FullCalendar 7.2
Install, update and uninstall functions for the FullCalendar Options module.
File
fullcalendar_options/fullcalendar_options.installView source
<?php
/**
* @file
* Install, update and uninstall functions for the FullCalendar Options module.
*/
/**
* Implements hook_install().
*/
function fullcalendar_options_install() {
variable_set('fullcalendar_options', array_fill_keys(array_keys(_fullcalendar_options_list(TRUE)), TRUE));
}
/**
* Implements hook_uninstall().
*/
function fullcalendar_options_uninstall() {
variable_del('fullcalendar_options');
}
Functions
Name | Description |
---|---|
fullcalendar_options_install | Implements hook_install(). |
fullcalendar_options_uninstall | Implements hook_uninstall(). |