t('Primary navigation links'), 'single' => TRUE, 'icon' => 'icon_page.png', 'description' => t('Add the primary_links (local tasks) as content.'), 'category' => t('Page elements'), 'render last' => TRUE, ); /** * Output function for the 'page_primary_links' content type. * * Outputs the primary_links (local tasks) of the current page. */ function ctools_page_primary_links_content_type_render($subtype, $conf, $panel_args) { $block = new stdClass(); $block->content = theme('links', menu_primary_links(), array('class' => 'links primary-links')); return $block; }