You are here

function kaltura_views_handler_filter_kaltura_text::option_defintion in Kaltura 7.2

Same name and namespace in other branches
  1. 7.3 plugins/kaltura_views/kaltura_views_handler_filter_kaltura_text.inc \kaltura_views_handler_filter_kaltura_text::option_defintion()

File

plugins/kaltura_views/kaltura_views_handler_filter_kaltura_text.inc, line 13

Class

kaltura_views_handler_filter_kaltura_text
this filter extends the one filed string filter to add all of the text fileds in the kaltura db

Code

function option_defintion() {
  $options = parent::option_defintion();
  $options['expose']['contains']['required'] = array(
    'default' => TRUE,
  );
  return $options;
}