You are here

class record_shorten_views_handler_filter_string_service in Shorten URLs 6

Same name and namespace in other branches
  1. 8 modules/record_shorten/record_shorten_views_handler_filter_string_service.inc \record_shorten_views_handler_filter_string_service
  2. 7.2 record_shorten_views_handler_filter_string_service.inc \record_shorten_views_handler_filter_string_service
  3. 7 record_shorten_views_handler_filter_string_service.inc \record_shorten_views_handler_filter_string_service

Sets up a form for choosing the Shorten URLs service.

Hierarchy

Expanded class hierarchy of record_shorten_views_handler_filter_string_service

1 string reference to 'record_shorten_views_handler_filter_string_service'
record_shorten_views_data in ./record_shorten.views.inc
Implementation of hook_views_data().

File

./record_shorten_views_handler_filter_string_service.inc, line 11
Allows choosing the Shorten URLs service.

View source
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')));
  }

}

Members