You are here

record_shorten_views_handler_filter_string_service.inc in Shorten URLs 7.2

Allows choosing the Shorten URLs service.

File

record_shorten_views_handler_filter_string_service.inc
View source
<?php

/**
 * @file
 *   Allows choosing the Shorten URLs service.
 */

/**
 * Sets up a form for choosing the Shorten URLs service.
 */
class record_shorten_views_handler_filter_string_service extends views_handler_filter_many_to_one {
  function get_value_options() {
    $this->value_options = drupal_map_assoc(array_keys(module_invoke_all('shorten_service')));
  }

}

Classes

Namesort descending Description
record_shorten_views_handler_filter_string_service Sets up a form for choosing the Shorten URLs service.