You are here

function panels_list_panels_styles in Panels 6.2

Same name and namespace in other branches
  1. 5.2 styles/list.inc \panels_list_panels_styles()

Implementation of hook_panels_style_info().

File

styles/list.inc, line 16
styles/list.inc Definition of the 'list' panel style.

Code

function panels_list_panels_styles() {
  return array(
    'list' => array(
      'title' => t('List'),
      'description' => t('Presents the panes in the form of an HTML list.'),
      'render panel' => 'panels_list_style_render_panel',
      'settings form' => 'panels_list_style_settings_form',
      'settings validate' => 'panels_list_style_settings_validate',
    ),
  );
}