'page', 'title' => t('Node template'), 'admin title' => t('Node template'), 'admin description' => t('When enabled, this overrides the default Drupal behavior for displaying nodes at node/%node. If you add variants, you may use selection criteria such as node type or language or user access to provide different views of nodes. If no variant is selected, the default Drupal node view will be used. This page only affects nodes viewed as pages, it will not affect nodes viewed in lists or at other locations. Also please note that if you are using pathauto, aliases may make a node to be somewhere else, but as far as Drupal is concerned, they are still at node/%node.'), 'admin path' => 'node/%node', // Menu hooks so that we can alter the node/%node menu entry to point to us. 'hook menu' => 'page_manager_node_view_menu', 'hook menu alter' => 'page_manager_node_view_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_node_view_get_arguments', 'get context placeholders' => 'page_manager_node_view_get_contexts', // Allow this to be enabled or disabled: 'disabled' => variable_get('page_manager_node_view_disabled', TRUE), 'enable callback' => 'page_manager_node_view_enable', ); } /** * Callback defined by page_manager_node_view_page_manager_tasks(). * * Alter the node view input so that node view comes to us rather than the * normal node view process. */ function page_manager_node_view_menu_alter(&$items, $task) { if (variable_get('page_manager_node_view_disabled', TRUE)) { return; } // Override the node view handler for our purpose. $callback = $items['node/%node']['page callback']; if ($callback == 'node_page_view' || variable_get('page_manager_override_anyway', FALSE)) { $items['node/%node']['page callback'] = 'page_manager_node_view'; $items['node/%node']['file path'] = $task['path']; $items['node/%node']['file'] = $task['file']; } else { // automatically disable this task if it cannot be enabled. variable_set('page_manager_node_view_disabled', TRUE); if (!empty($GLOBALS['page_manager_enabling_node_view'])) { drupal_set_message(t('Page manager module is unable to enable node/%node because some other module already has overridden with %callback.', array('%callback' => $callback)), 'error'); } } // @todo override node revision handler as well? } /** * Entry point for our overridden node view. * * This function asks its assigned handlers who, if anyone, would like * to run with it. If no one does, it passes through to Drupal core's * node view, which is node_page_view(). */ function page_manager_node_view($node) { // Load my task plugin $task = page_manager_get_task('node_view'); // Load the node into a context. ctools_include('context'); ctools_include('context-task-handler'); $contexts = ctools_context_handler_get_task_contexts($task, '', array($node)); $output = ctools_context_handler_render($task, '', $contexts, array($node->nid)); if ($output !== FALSE) { node_tag_new($node->nid); return $output; } $function = 'node_page_view'; foreach (module_implements('page_manager_override') as $module) { $call = $module . '_page_manager_override'; if (($rc = $call('node_view')) && function_exists($rc)) { $function = $rc; break; } } // Otherwise, fall back. return $function($node); } /** * Callback to get arguments provided by this task handler. * * Since this is the node view and there is no UI on the arguments, we * create dummy arguments that contain the needed data. */ function page_manager_node_view_get_arguments($task, $subtask_id) { return array( array( 'keyword' => 'node', 'identifier' => t('Node being viewed'), 'id' => 1, 'name' => 'nid', 'settings' => array(), ), ); } /** * Callback to get context placeholders provided by this handler. */ function page_manager_node_view_get_contexts($task, $subtask_id) { return ctools_context_get_placeholders_from_argument(page_manager_node_view_get_arguments($task, $subtask_id)); } /** * Callback to enable/disable the page from the UI. */ function page_manager_node_view_enable($cache, $status) { variable_set('page_manager_node_view_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_node_view'] = TRUE; } }