You are here

function page_manager_comment_reply_enable in Chaos Tool Suite (ctools) 7

Callback to enable/disable the page from the UI.

1 string reference to 'page_manager_comment_reply_enable'
page_manager_comment_reply_page_manager_tasks in page_manager/plugins/tasks/comment_reply.inc
Specialized implementation of hook_page_manager_task_tasks(). See api-task.html for more information.

File

page_manager/plugins/tasks/comment_reply.inc, line 44

Code

function page_manager_comment_reply_enable($cache, $status) {
  variable_set('page_manager_comment_reply_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_comment_reply'] = TRUE;
  }
}