function page_manager_contact_site_page_manager_tasks in Chaos Tool Suite (ctools) 6
Same name and namespace in other branches
- 7 page_manager/plugins/tasks/contact_site.inc \page_manager_contact_site_page_manager_tasks()
Specialized implementation of hook_page_manager_task_tasks(). See api-task.html for more information.
File
- page_manager/
plugins/ tasks/ contact_site.inc, line 7
Code
function page_manager_contact_site_page_manager_tasks() {
if (!module_exists('contact')) {
return;
}
return array(
// This is a 'page' task and will fall under the page admin UI
'task type' => 'page',
'title' => t('Site contact page'),
'admin title' => t('Site contact page'),
'admin description' => t('When enabled, this overrides the default Drupal behavior for the site contact page at <em>/contact</em>. If no variant is selected, the default Drupal contact form will be used.'),
'admin path' => 'contact',
// Menu hooks so that we can alter the node/%node menu entry to point to us.
'hook menu alter' => 'page_manager_contact_site_menu_alter',
// This is task uses 'context' handlers and must implement these to give the
// handler data it needs.
'handler type' => 'context',
// Allow this to be enabled or disabled:
'disabled' => variable_get('page_manager_contact_site_disabled', TRUE),
'enable callback' => 'page_manager_contact_site_enable',
);
}