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), 'group_name' => array('name' => 'group_name', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Group Name'), 'required' => true, 'maxlength' => 64, 'size' => CRM_Utils_Type::BIG), 'name' => array('name' => 'name', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Name'), 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE), 'value' => array('name' => 'value', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Value')), 'domain_id' => array('name' => 'domain_id', 'type' => CRM_Utils_Type::T_INT, 'required' => true, 'FKClassName' => 'CRM_Core_DAO_Domain'), 'contact_id' => array('name' => 'contact_id', 'type' => CRM_Utils_Type::T_INT, 'FKClassName' => 'CRM_Contact_DAO_Contact'), 'is_domain' => array('name' => 'is_domain', 'type' => CRM_Utils_Type::T_BOOLEAN), 'component_id' => array('name' => 'component_id', 'type' => CRM_Utils_Type::T_INT, 'FKClassName' => 'CRM_Core_DAO_Component', 'pseudoconstant' => array('table' => 'civicrm_component', 'keyColumn' => 'id', 'labelColumn' => 'name')), 'created_date' => array('name' => 'created_date', 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME, 'title' => ts('Created Date')), 'created_id' => array('name' => 'created_id', 'type' => CRM_Utils_Type::T_INT, 'FKClassName' => 'CRM_Contact_DAO_Contact'));
     }
     return self::$_fields;
 }
Esempio n. 2
0
 /**
  * Returns all the column names of this table
  *
  * @return array
  */
 static function &fields()
 {
     if (!self::$_fields) {
         self::$_fields = array('id' => array('name' => 'id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Setting ID'), 'required' => true), 'name' => array('name' => 'name', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Setting Name'), 'description' => 'Unique name for setting', 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE), 'value' => array('name' => 'value', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Value'), 'description' => 'data associated with this group / name combo'), 'domain_id' => array('name' => 'domain_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Setting Domain'), 'description' => 'Which Domain is this menu item for', 'required' => true, 'FKClassName' => 'CRM_Core_DAO_Domain', 'pseudoconstant' => array('table' => 'civicrm_domain', 'keyColumn' => 'id', 'labelColumn' => 'name')), 'contact_id' => array('name' => 'contact_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Setting Contact'), 'description' => 'FK to Contact ID if the setting is localized to a contact', 'FKClassName' => 'CRM_Contact_DAO_Contact'), 'is_domain' => array('name' => 'is_domain', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Is Domain Setting?'), 'description' => 'Is this setting a contact specific or site wide setting?'), 'component_id' => array('name' => 'component_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Setting Component'), 'description' => 'Component that this menu item belongs to', 'FKClassName' => 'CRM_Core_DAO_Component', 'html' => array('type' => 'Select'), 'pseudoconstant' => array('table' => 'civicrm_component', 'keyColumn' => 'id', 'labelColumn' => 'name')), 'created_date' => array('name' => 'created_date', 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME, 'title' => ts('Setting Created Date'), 'description' => 'When was the setting created'), 'created_id' => array('name' => 'created_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Setting Created By'), 'description' => 'FK to civicrm_contact, who created this setting', 'FKClassName' => 'CRM_Contact_DAO_Contact'));
     }
     return self::$_fields;
 }