예제 #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), 'world_region' => array('name' => 'name', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('World Region'), 'maxlength' => 128, 'size' => CRM_Utils_Type::HUGE, 'export' => true, 'where' => 'civicrm_worldregion.name', 'headerPattern' => '', 'dataPattern' => ''));
     }
     return self::$_fields;
 }