function views_handler_operator_yesno in Views (for Drupal 7) 5
A list of yes/no.
4 string references to 'views_handler_operator_yesno'
- comment_views_tables in modules/
views_comment.inc - This include file implements views functionality on behalf of comment.module
- 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 1811
Code
function views_handler_operator_yesno() {
return array(
'1' => t('Yes'),
'0' => t('No'),
);
}