You are here

function panels_tabs_panels_styles in Panels Tabs 5

Implementation of hook_panels_styles().

File

./panels_tabs.module, line 16
Definition of the 'tabs' panel style.

Code

function panels_tabs_panels_styles() {
  return array(
    'tabs' => array(
      'title' => t('Tabs'),
      'description' => t('Presents the panes in tabs.'),
      'render panel' => 'panels_tabs_style_render_panel',
      'settings form' => 'panels_tabs_style_settings_form',
      'settings validate' => 'panels_tabs_style_settings_validate',
    ),
  );
}