* @license http://www.gnu.org/licenses/gpl-2.0.html GPL version 2 * @category Stud.IP */ namespace UserFilterFields; class SubjectConditionAny extends \UserFilterField { // --- ATTRIBUTES --- public $userDataDbTable = 'user_studiengang'; public $userDataDbField = 'fach_id'; public static $sortOrder = 3; // --- OPERATIONS --- /** * @see UserFilterField::__construct */ public function __construct($fieldId = '') { parent::__construct($fieldId); $this->validCompareOperators = [ '!=' => ' ' ]; $this->validValues = ['' => ' ']; } /** * Get this field's display name. * * @return String */ public function getName() { return _('Alle Studienfächer'); } }