You are here

function UIkitViewsPluginStyleList::option_definition in UIkit Components 7.2

Same name and namespace in other branches
  1. 7.3 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['class'] = array(
    'default' => '',
  );
  return $options;
}