You are here

class record_shorten_views_handler_filter_string_service in Shorten URLs 8

Same name in this branch
  1. 8 modules/record_shorten/record_shorten_views_handler_filter_string_service.inc \record_shorten_views_handler_filter_string_service
  2. 8 modules/record_shorten/src/record_shorten_views_handler_filter_string_service.php \Drupal\record_shorten\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 modules/record_shorten/record_shorten.views.inc
Implements hook_views_data().

File

modules/record_shorten/src/record_shorten_views_handler_filter_string_service.php, line 7

Namespace

Drupal\record_shorten
View source
class record_shorten_views_handler_filter_string_service extends views_handler_filter_many_to_one {
  function get_value_options() {
    $this->value_options = array_combine(array_keys(\Drupal::moduleHandler()
      ->invokeAll('shorten_service')), array_keys(\Drupal::moduleHandler()
      ->invokeAll('shorten_service')));
  }

}

Members