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', array('links' => menu_main_menu(), 'attributes' => array('class' => 'links primary-links'))); return $block; } /** * Returns an edit form for custom type settings. */ function ctools_page_primary_links_content_type_edit_form($form, &$form_state) { // Empty so that we can have title override. return $form; }