function views_plugin_style_galleria::option_definition in Galleria 7
Set default options.
Overrides views_plugin_style::option_definition
File
- includes/
views_plugin_style_galleria.inc, line 15  - Galleria style plugin for the Views module.
 
Class
- views_plugin_style_galleria
 - Implements a style type plugin for the Views module.
 
Code
function option_definition() {
  $options = parent::option_definition();
  $options += array(
    'galleria_optionset' => array(
      'default' => 'default',
    ),
    'galleria_theme' => array(
      'default' => 'classic',
    ),
  );
  return $options;
}