You are here

function UIkitViewsPluginStyleList::option_definition in UIkit Components 7.3

Same name and namespace in other branches
  1. 7.2 uikit_views/plugins/UIkitViewsPluginStyleList.inc \UIkitViewsPluginStyleList::option_definition()

Set default options

Overrides views_plugin_style::option_definition

File

uikit_views/plugins/UIkitViewsPluginStyleList.inc, line 18
Contains the list style plugin.

Class

UIkitViewsPluginStyleList
Style plugin to render each item in UIkit list.

Code

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