function page_manager_page_access_restrictions in Chaos Tool Suite (ctools) 7
Same name and namespace in other branches
- 6 page_manager/plugins/tasks/page.inc \page_manager_page_access_restrictions()
Return a list of arguments used by this task.
1 string reference to 'page_manager_page_access_restrictions'
- page_manager_page_page_manager_tasks in page_manager/
plugins/ tasks/ page.inc - Specialized implementation of hook_page_manager_task_tasks(). See api-task.html for more information.
File
- page_manager/
plugins/ tasks/ page.inc, line 363 - Handle the 'page' task, which creates pages with arbitrary tasks and lets handlers decide how they will be rendered.
Code
function page_manager_page_access_restrictions($task, $subtask, $contexts) {
$page = $subtask['subtask'];
return ctools_access_add_restrictions($page->access, $contexts);
}