You are here

function notifications_views_handler_argument_autocomplete::option_definition in Notifications 6.2

Same name and namespace in other branches
  1. 7 notifications_views/includes/notifications_views_handler_argument_autocomplete.inc \notifications_views_handler_argument_autocomplete::option_definition()

File

notifications_views/notifications_views_handler_argument_autocomplete.inc, line 47

Class

notifications_views_handler_argument_autocomplete
Argument handler to accept the first part of a string and complete the rest. See views_handler_filter_string.

Code

function option_definition() {
  $options = parent::option_definition();
  $options['wildcard'] = array(
    'default' => '*',
  );
}