Esempio n. 1
0
 /**
  * returns all the column names of this table
  *
  * @access public
  * @return array
  */
 static function &fields()
 {
     if (!self::$_fields) {
         self::$_fields = array('id' => array('name' => 'id', 'type' => CRM_Utils_Type::T_INT, 'required' => true), 'case_status_id' => array('name' => 'case_status_id', 'type' => CRM_Utils_Type::T_INT, 'required' => true), 'vacancy_id' => array('name' => 'vacancy_id', 'type' => CRM_Utils_Type::T_INT, 'required' => true, 'FKClassName' => 'CRM_HRRecruitment_DAO_HRVacancy'), 'weight' => array('name' => 'weight', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Weight')));
     }
     return self::$_fields;
 }