function page_manager_comment_reply_page_manager_tasks
Specialized implementation of hook_page_manager_task_tasks(). See api-task.html for more information.
File
-
page_manager/
plugins/ tasks/ comment_reply.inc, line 11
Code
function page_manager_comment_reply_page_manager_tasks() {
if (!module_exists('comment')) {
return;
}
return array(
// This is a 'page' task and will fall under the page admin UI.
'task type' => 'page',
'title' => t('Comment Reply page'),
'admin title' => t('Comment Reply 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' => 'comment/reply/%node',
// Menu hooks so that we can alter the node/%node menu entry to point to us.
'hook menu alter' => 'page_manager_comment_reply_menu_alter',
// This is task uses 'context' handlers and must implement these to give the
// handler data it needs.
'handler type' => 'context',
'get arguments' => 'page_manager_comment_reply_get_arguments',
'get context placeholders' => 'page_manager_comment_reply_get_contexts',
// Allow this to be enabled or disabled:
'disabled' => variable_get('page_manager_comment_reply_disabled', TRUE),
'enable callback' => 'page_manager_comment_reply_enable',
'access callback' => 'page_manager_comment_reply_check',
);
}