You are here

class casetracker_views_handler_filter_user_options in Case Tracker 6

Same name and namespace in other branches
  1. 7 includes/casetracker_views_handler_filter_user_options.inc \casetracker_views_handler_filter_user_options

//

Hierarchy

Expanded class hierarchy of casetracker_views_handler_filter_user_options

1 string reference to 'casetracker_views_handler_filter_user_options'
casetracker_views_data_casetracker_case in ./casetracker.views.inc

File

includes/casetracker_views_handler_filter_user_options.inc, line 6

View source
class casetracker_views_handler_filter_user_options extends views_handler_filter_many_to_one {
  function get_value_options() {
    $options = array(
      '***CURRENT_USER***' => t('<Current user>'),
      0 => casetracker_default_assign_to(),
    );
    $options += casetracker_user_options();
    $this->value_options = $options;
  }

}

Members