You are here

function tagadelic_plugin_style::options_form in Views Tagadelic 7

Same name and namespace in other branches
  1. 7.2 includes/tagadelic_plugin_style.inc \tagadelic_plugin_style::options_form()

Render the given style.

Overrides views_plugin_style_list::options_form

File

includes/tagadelic_plugin_style.inc, line 29
Contains the tagadelic style plugin.

Class

tagadelic_plugin_style
Style plugin to render a weighted set of taxonomy terms.

Code

function options_form(&$form, &$form_state) {

  //    parent::options_form($form, $form_state);
  //    $steps = 6;
  //    $size = 60;
  $form['steps'] = array(
    '#type' => 'textfield',
    '#title' => t('Steps'),
    '#default_value' => $this->options['steps'] ? $this->options['steps'] : 6,
  );
}