You are here

function lightgallery_style_plugin::option_definition in Lightgallery 7

Provide default options.

Overrides views_plugin_style::option_definition

File

views/lightgallery_style_plugin.inc, line 18
Contains the lightgallery style plugin.

Class

lightgallery_style_plugin
Style plugin to render views as lightgallery instance.

Code

function option_definition() {
  $options = parent::option_definition();
  $options['lightgallery'] = array(
    'default' => array(),
  );
  return $options;
}