function page_manager_contact_site_enable
Callback to enable/disable the page from the UI.
1 string reference to 'page_manager_contact_site_enable'
- page_manager_contact_site_page_manager_tasks in page_manager/
plugins/ tasks/ contact_site.inc - Specialized implementation of hook_page_manager_task_tasks(). See api-task.html for more information.
File
-
page_manager/
plugins/ tasks/ contact_site.inc, line 110
Code
function page_manager_contact_site_enable($cache, $status) {
variable_set('page_manager_contact_site_disabled', $status);
// Set a global flag so that the menu routine knows it needs
// to set a message if enabling cannot be done.
if (!$status) {
$GLOBALS['page_manager_enabling_contact_site'] = TRUE;
}
}