__table = 'civicrm_custom_group'; parent::__construct(); } /** * Returns foreign keys and entity references * * @return array * [CRM_Core_Reference_Interface] */ static function getReferenceColumns() { if (!isset(Civi::$statics[__CLASS__]['links'])) { Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__); Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'created_id', 'civicrm_contact', 'id'); CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']); } return Civi::$statics[__CLASS__]['links']; } /** * Returns all the column names of this table * * @return array */ static function &fields() { if (!isset(Civi::$statics[__CLASS__]['fields'])) { Civi::$statics[__CLASS__]['fields'] = array( 'id' => array( 'name' => 'id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Custom Group ID') , 'description' => 'Unique Custom Group ID', 'required' => true, ) , 'name' => array( 'name' => 'name', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Custom Group Name') , 'description' => 'Variable name/programmatic handle for this group.', 'maxlength' => 64, 'size' => CRM_Utils_Type::BIG, ) , 'title' => array( 'name' => 'title', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Custom Group Title') , 'description' => 'Friendly Name.', 'required' => true, 'maxlength' => 64, 'size' => CRM_Utils_Type::BIG, ) , 'extends' => array( 'name' => 'extends', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Custom Group Extends') , 'description' => 'Type of object this group extends (can add other options later e.g. contact_address, etc.).', 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, 'default' => 'Contact', ) , 'extends_entity_column_id' => array( 'name' => 'extends_entity_column_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Custom Group Subtype List') , 'description' => 'FK to civicrm_option_value.id (for option group custom_data_type.)', 'default' => 'NULL', ) , 'extends_entity_column_value' => array( 'name' => 'extends_entity_column_value', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Custom Group Subtype') , 'description' => 'linking custom group for dynamic object', 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, ) , 'style' => array( 'name' => 'style', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Custom Group Style') , 'description' => 'Visual relationship between this form and its parent.', 'maxlength' => 15, 'size' => CRM_Utils_Type::TWELVE, 'html' => array( 'type' => 'Select', ) , 'pseudoconstant' => array( 'callback' => 'CRM_Core_SelectValues::customGroupStyle', ) ) , 'collapse_display' => array( 'name' => 'collapse_display', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Collapse Custom Group?') , 'description' => 'Will this group be in collapsed or expanded mode on initial display ?', ) , 'help_pre' => array( 'name' => 'help_pre', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Custom Group Pre Text') , 'description' => 'Description and/or help text to display before fields in form.', 'rows' => 4, 'cols' => 80, 'html' => array( 'type' => 'TextArea', ) , ) , 'help_post' => array( 'name' => 'help_post', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Custom Group Post Text') , 'description' => 'Description and/or help text to display after fields in form.', 'rows' => 4, 'cols' => 80, 'html' => array( 'type' => 'TextArea', ) , ) , 'weight' => array( 'name' => 'weight', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Order') , 'description' => 'Controls display order when multiple extended property groups are setup for the same class.', 'required' => true, 'default' => '1', ) , 'is_active' => array( 'name' => 'is_active', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Custom Group Is Active?') , 'description' => 'Is this property active?', ) , 'table_name' => array( 'name' => 'table_name', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Table Name') , 'description' => 'Name of the table that holds the values for this group.', 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, ) , 'is_multiple' => array( 'name' => 'is_multiple', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Supports Multiple Records') , 'description' => 'Does this group hold multiple values?', ) , 'min_multiple' => array( 'name' => 'min_multiple', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Minimum Multiple Records') , 'description' => 'minimum number of multiple records (typically 0?)', ) , 'max_multiple' => array( 'name' => 'max_multiple', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Maximum Multiple Records') , 'description' => 'maximum number of multiple records, if 0 - no max', ) , 'collapse_adv_display' => array( 'name' => 'collapse_adv_display', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Collapse Group Display') , 'description' => 'Will this group be in collapsed or expanded mode on advanced search display ?', ) , 'created_id' => array( 'name' => 'created_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Custom Group Created By') , 'description' => 'FK to civicrm_contact, who created this custom group', 'FKClassName' => 'CRM_Contact_DAO_Contact', ) , 'created_date' => array( 'name' => 'created_date', 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME, 'title' => ts('Custom Group Created Date') , 'description' => 'Date and time this custom group was created.', ) , 'is_reserved' => array( 'name' => 'is_reserved', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Reserved Group?') , 'description' => 'Is this a reserved Custom Group?', ) , ); CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']); } return Civi::$statics[__CLASS__]['fields']; } /** * Return a mapping from field-name to the corresponding key (as used in fields()). * * @return array * Array(string $name => string $uniqueName). */ static function &fieldKeys() { if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) { Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields())); } return Civi::$statics[__CLASS__]['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) { $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'custom_group', $prefix, array()); return $r; } /** * Returns the list of fields that can be exported * * @param bool $prefix * * @return array */ static function &export($prefix = false) { $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'custom_group', $prefix, array()); return $r; } }