You are here

function rotor_plugin_row_rotor::option_definition in Rotor Banner 7

Same name and namespace in other branches
  1. 6.2 views/rotor_plugin_row_rotor.inc \rotor_plugin_row_rotor::option_definition()

Set default options

Overrides views_plugin_row::option_definition

File

views/rotor_plugin_row_rotor.inc, line 17
GMap style plugin.

Class

rotor_plugin_row_rotor
Style plugin to render a map.

Code

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