You are here

function panels_node_panels_dashboard_blocks in Panels 6.3

Same name and namespace in other branches
  1. 7.3 panels_node/panels_node.module \panels_node_panels_dashboard_blocks()

Implementation of hook_panels_dashboard_blocks().

Adds panel nodes information to the Panels dashboard.

File

panels_node/panels_node.module, line 402
panels_node.module

Code

function panels_node_panels_dashboard_blocks(&$vars) {
  $vars['links']['panels_node'] = array(
    'title' => l(t('Panel node'), 'node/add/panel'),
    'description' => t('Panel nodes are node content and appear in your searches, but are more limited than panel pages.'),
    'weight' => -1,
  );
}