You are here

rotor_plugin_row_rotor.inc in Rotor Banner 7

Same filename and directory in other branches
  1. 6.2 views/rotor_plugin_row_rotor.inc

GMap style plugin.

File

views/rotor_plugin_row_rotor.inc
View source
<?php

/**
 * @file
 * GMap style plugin.
 */

/**
 * Style plugin to render a map.
 *
 * @ingroup views_style_plugins
 */
class rotor_plugin_row_rotor extends views_plugin_row {

  /**
   * Set default options
   */
  function option_definition() {
    $options = parent::option_definition();
    $options['imagecache_preset'] = array(
      'default' => '',
    );
    return $options;
  }
  function render($row) {
    $output = theme($this
      ->theme_functions(), $this->view, $this->options, $row);
    return trim($output);
  }

  /**
   * Render the given style.
   */

  /**
   * Render the given style.
   */
  function options_form(&$form, &$form_state) {
    parent::options_form($form, $form_state);
    if (module_exists('imagecache')) {
      $presets[0] = t('None');
      $presets += rotor_get_imagecache_presets();
      $form['imagecache_preset'] = array(
        '#type' => 'select',
        '#title' => t('Imagecache preset'),
        '#default_value' => $this->options['imagecache_preset'],
        '#options' => $presets,
        '#description' => t('Select the imagecache preset to use with the images.'),
      );
    }
  }

}

Classes

Namesort descending Description
rotor_plugin_row_rotor Style plugin to render a map.