You are here

function views_handler_operator_like in Views (for Drupal 7) 5

A list of options to be used in LIKE queries

3 string references to 'views_handler_operator_like'
node_views_tables in modules/views_node.inc
This include file implements views functionality on behalf of node.module
profile_views_add_filter in modules/views_profile.inc
Add profile filters to view table
upload_views_tables in modules/views_upload.inc
This include file implements views functionality for the file.inc and upload module

File

./views.module, line 1918

Code

function views_handler_operator_like() {
  return array(
    '=' => t('Is Equal To'),
    'contains' => t('Contains'),
    'word' => t('Contains Any Word'),
    'allwords' => t('Contains All Words'),
    'starts' => t('Starts With'),
    'ends' => t('Ends With'),
    'not' => t('Does Not Contain'),
  );
}