__table = 'civicrm_option_value'; parent::__construct(); } /** * Returns foreign keys and entity references * * @return array * [CRM_Core_Reference_Interface] */ static function getReferenceColumns() { if (!self::$_links) { self::$_links = static ::createReferenceColumns(__CLASS__); self::$_links[] = new CRM_Core_Reference_Basic(self::getTableName() , 'option_group_id', 'civicrm_option_group', 'id'); self::$_links[] = new CRM_Core_Reference_Basic(self::getTableName() , 'component_id', 'civicrm_component', 'id'); self::$_links[] = new CRM_Core_Reference_Basic(self::getTableName() , 'domain_id', 'civicrm_domain', 'id'); } return self::$_links; } /** * 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('Option Value ID') , 'description' => 'Option ID', 'required' => true, ) , 'option_group_id' => array( 'name' => 'option_group_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Option Group ID') , 'description' => 'Group which this option belongs to.', 'required' => true, 'FKClassName' => 'CRM_Core_DAO_OptionGroup', 'html' => array( 'type' => 'Select', ) , 'pseudoconstant' => array( 'table' => 'civicrm_option_group', 'keyColumn' => 'id', 'labelColumn' => 'name', ) ) , 'label' => array( 'name' => 'label', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Option Label') , 'description' => 'Option string as displayed to users - e.g. the label in an HTML OPTION tag.', 'required' => true, 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, ) , 'value' => array( 'name' => 'value', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Option Value') , 'description' => 'The actual value stored (as a foreign key) in the data record. Functions which need lookup option_value.title should use civicrm_option_value.option_group_id plus civicrm_option_value.value as the key.', 'required' => true, 'maxlength' => 512, 'size' => CRM_Utils_Type::HUGE, ) , 'name' => array( 'name' => 'name', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Option Name') , 'description' => 'Stores a fixed (non-translated) name for this option value. Lookup functions should use the name as the key for the option value row.', 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'import' => true, 'where' => 'civicrm_option_value.name', 'headerPattern' => '', 'dataPattern' => '', 'export' => true, ) , 'grouping' => array( 'name' => 'grouping', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Option Grouping Name') , 'description' => 'Use to sort and/or set display properties for sub-set(s) of options within an option group. EXAMPLE: Use for college_interest field, to differentiate partners from non-partners.', 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, ) , 'filter' => array( 'name' => 'filter', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Filter') , 'description' => 'Bitwise logic can be used to create subsets of options within an option_group for different uses.', ) , 'is_default' => array( 'name' => 'is_default', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Option is Default?') , 'description' => 'Is this the default option for the group?', ) , 'weight' => array( 'name' => 'weight', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Order') , 'description' => 'Controls display sort order.', 'required' => true, ) , 'description' => array( 'name' => 'description', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Option Description') , 'description' => 'Optional description.', 'rows' => 8, 'cols' => 60, 'html' => array( 'type' => 'TextArea', ) , ) , 'is_optgroup' => array( 'name' => 'is_optgroup', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Option is Header?') , 'description' => 'Is this row simply a display header? Expected usage is to render these as OPTGROUP tags within a SELECT field list of options?', ) , 'is_reserved' => array( 'name' => 'is_reserved', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Option Is Reserved?') , 'description' => 'Is this a predefined system object?', ) , 'is_active' => array( 'name' => 'is_active', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Option Is Active') , 'description' => 'Is this option active?', 'default' => '1', ) , 'component_id' => array( 'name' => 'component_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Option Component') , 'description' => 'Component that this option value belongs/caters to.', 'FKClassName' => 'CRM_Core_DAO_Component', 'html' => array( 'type' => 'Select', ) , 'pseudoconstant' => array( 'table' => 'civicrm_component', 'keyColumn' => 'id', 'labelColumn' => 'name', ) ) , 'domain_id' => array( 'name' => 'domain_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Option Domain') , 'description' => 'Which Domain is this option value for', 'FKClassName' => 'CRM_Core_DAO_Domain', 'pseudoconstant' => array( 'table' => 'civicrm_domain', 'keyColumn' => 'id', 'labelColumn' => 'name', ) ) , 'visibility_id' => array( 'name' => 'visibility_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Option Visibility') , 'default' => 'NULL', ) , ); } return self::$_fields; } /** * Returns an array containing, for each field, the arary key used for that * field in self::$_fields. * * @return array */ static function &fieldKeys() { if (!(self::$_fieldKeys)) { self::$_fieldKeys = array( 'id' => 'id', 'option_group_id' => 'option_group_id', 'label' => 'label', 'value' => 'value', 'name' => 'name', 'grouping' => 'grouping', 'filter' => 'filter', 'is_default' => 'is_default', 'weight' => 'weight', 'description' => 'description', 'is_optgroup' => 'is_optgroup', 'is_reserved' => 'is_reserved', 'is_active' => 'is_active', 'component_id' => 'component_id', 'domain_id' => 'domain_id', 'visibility_id' => 'visibility_id', ); } return self::$_fieldKeys; } /** * Returns the names of this table * * @return string */ static function getTableName() { return CRM_Core_DAO::getLocaleTableName(self::$_tableName); } /** * Returns if this table needs to be logged * * @return boolean */ function getLog() { return self::$_log; } /** * Returns the list of fields that can be imported * * @param bool $prefix * * @return array */ static function &import($prefix = false) { if (!(self::$_import)) { self::$_import = array(); $fields = self::fields(); foreach($fields as $name => $field) { if (CRM_Utils_Array::value('import', $field)) { if ($prefix) { self::$_import['option_value'] = & $fields[$name]; } else { self::$_import[$name] = & $fields[$name]; } } } } return self::$_import; } /** * Returns the list of fields that can be exported * * @param bool $prefix * * @return array */ static function &export($prefix = false) { if (!(self::$_export)) { self::$_export = array(); $fields = self::fields(); foreach($fields as $name => $field) { if (CRM_Utils_Array::value('export', $field)) { if ($prefix) { self::$_export['option_value'] = & $fields[$name]; } else { self::$_export[$name] = & $fields[$name]; } } } } return self::$_export; } }