t('Site name'), 'single' => TRUE, 'icon' => 'icon_page.png', 'description' => t('The name of the site.'), 'category' => t('Page elements'), 'render last' => TRUE, ); /** * Output function for the 'page_site_name' content type. * * Outputs the site_name for the current page. */ function ctools_page_site_name_content_type_render($subtype, $conf, $panel_args) { $block = new stdClass(); $block->content = filter_xss_admin(variable_get('site_name', 'Drupal')); return $block; }