You are here

function tweet_feed_handler_argument_hashtag::options_form in Tweet Feed 6

File

inc/tweet_feed_handler_argument_hashtag.inc, line 9

Class

tweet_feed_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',
  );
}