You are here

function views_handler_argument_hashtag::options_form in Tweet Feed 7

Build the options form.

Overrides views_handler_argument_string::options_form

File

./tweet_feed.views.inc, line 187

Class

views_handler_argument_hashtag
override the string handler for handling hash tags as we need to change the query so we can look through the string with a LIKE instead of an =

Code

function options_form(&$form, &$form_state) {
  $form['match_exact'] = array(
    '#type' => 'checkbox',
    '#title' => t('Exact Match Mode'),
    '#description' => t('Match the argument exactly. Not as a potential substring.'),
    '#default_value' => $this->options['match_exact'],
    '#fieldset' => 'more',
  );
}