PANELS Custom Panes (CTools Content Type or Plugin) <?php $plugin = array( ‘single’ => TRUE, ‘title’ => t(‘Menu shortcuts to the themes’), ‘category’ => t(‘MSF ES: Themes’), ‘render callback’ => ‘jumpmenu_themes_render’, ‘admin info’ => ‘jumpmenu_themes_admin_info’, ); /** * The ‘admin info’ callback for panel pane. / function jumpmenu_themes_admin_info($subtype, $conf, $contexts) { (…) } /* * Render callback function. */ function jumpmenu_themes_render($subtype, $conf, $args, $contexts) { (…) }