function cas_handler_field_cas_name::construct in CAS 7
Same name and namespace in other branches
- 6.3 includes/views/handlers/cas_handler_field_cas_name.inc \cas_handler_field_cas_name::construct()
Construct a new field handler.
Overrides views_handler_field::construct
File
- includes/
views/ handlers/ cas_handler_field_cas_name.inc, line 12 - Field handler to provide a list of CAS user names.
Class
- cas_handler_field_cas_name
- Field handler to provide a list of CAS user names.
Code
function construct() {
parent::construct();
$this->additional_fields['uid'] = array(
'table' => 'users',
'field' => 'uid',
);
}