You are here

function record_shorten_views_handler_filter_string_service::get_value_options 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::get_value_options()
  2. 8 modules/record_shorten/src/record_shorten_views_handler_filter_string_service.php \Drupal\record_shorten\record_shorten_views_handler_filter_string_service::get_value_options()
Same name and namespace in other branches
  1. 6 record_shorten_views_handler_filter_string_service.inc \record_shorten_views_handler_filter_string_service::get_value_options()
  2. 7.2 record_shorten_views_handler_filter_string_service.inc \record_shorten_views_handler_filter_string_service::get_value_options()
  3. 7 record_shorten_views_handler_filter_string_service.inc \record_shorten_views_handler_filter_string_service::get_value_options()

File

modules/record_shorten/record_shorten_views_handler_filter_string_service.inc, line 12
Allows choosing the Shorten URLs service.

Class

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

Code

function get_value_options() {
  $this->value_options = array_combine(array_keys(\Drupal::moduleHandler()
    ->invokeAll('shorten_service')), array_keys(\Drupal::moduleHandler()
    ->invokeAll('shorten_service')));
}