__table = 'civicrm_cxn'; parent::__construct(); } /** * 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('Connection ID') , 'description' => 'Connection ID', 'required' => true, 'table_name' => 'civicrm_cxn', 'entity' => 'Cxn', 'bao' => 'CRM_Cxn_BAO_Cxn', 'localizable' => 0, ) , 'app_guid' => array( 'name' => 'app_guid', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Application GUID') , 'description' => 'Application GUID', 'maxlength' => 128, 'size' => CRM_Utils_Type::HUGE, 'table_name' => 'civicrm_cxn', 'entity' => 'Cxn', 'bao' => 'CRM_Cxn_BAO_Cxn', 'localizable' => 0, ) , 'app_meta' => array( 'name' => 'app_meta', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Application Metadata (JSON)') , 'description' => 'Application Metadata (JSON)', 'table_name' => 'civicrm_cxn', 'entity' => 'Cxn', 'bao' => 'CRM_Cxn_BAO_Cxn', 'localizable' => 0, ) , 'cxn_guid' => array( 'name' => 'cxn_guid', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Connection GUID') , 'description' => 'Connection GUID', 'maxlength' => 128, 'size' => CRM_Utils_Type::HUGE, 'table_name' => 'civicrm_cxn', 'entity' => 'Cxn', 'bao' => 'CRM_Cxn_BAO_Cxn', 'localizable' => 0, ) , 'secret' => array( 'name' => 'secret', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Secret') , 'description' => 'Shared secret', 'table_name' => 'civicrm_cxn', 'entity' => 'Cxn', 'bao' => 'CRM_Cxn_BAO_Cxn', 'localizable' => 0, ) , 'perm' => array( 'name' => 'perm', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Perm') , 'description' => 'Permissions approved for the service (JSON)', 'table_name' => 'civicrm_cxn', 'entity' => 'Cxn', 'bao' => 'CRM_Cxn_BAO_Cxn', 'localizable' => 0, ) , 'options' => array( 'name' => 'options', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Options') , 'description' => 'Options for the service (JSON)', 'table_name' => 'civicrm_cxn', 'entity' => 'Cxn', 'bao' => 'CRM_Cxn_BAO_Cxn', 'localizable' => 0, ) , 'is_active' => array( 'name' => 'is_active', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Is Active') , 'description' => 'Is connection currently enabled?', 'default' => '1', 'table_name' => 'civicrm_cxn', 'entity' => 'Cxn', 'bao' => 'CRM_Cxn_BAO_Cxn', 'localizable' => 0, ) , 'created_date' => array( 'name' => 'created_date', 'type' => CRM_Utils_Type::T_TIMESTAMP, 'title' => ts('Created Date') , 'description' => 'When was the connection was created.', 'required' => false, 'default' => 'NULL', 'table_name' => 'civicrm_cxn', 'entity' => 'Cxn', 'bao' => 'CRM_Cxn_BAO_Cxn', 'localizable' => 0, ) , 'modified_date' => array( 'name' => 'modified_date', 'type' => CRM_Utils_Type::T_TIMESTAMP, 'title' => ts('Modified Date') , 'description' => 'When the connection was created or modified.', 'required' => false, 'default' => 'CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP', 'table_name' => 'civicrm_cxn', 'entity' => 'Cxn', 'bao' => 'CRM_Cxn_BAO_Cxn', 'localizable' => 0, ) , 'fetched_date' => array( 'name' => 'fetched_date', 'type' => CRM_Utils_Type::T_TIMESTAMP, 'title' => ts('Fetched Date') , 'description' => 'The last time the application metadata was fetched.', 'required' => false, 'default' => 'NULL', 'table_name' => 'civicrm_cxn', 'entity' => 'Cxn', 'bao' => 'CRM_Cxn_BAO_Cxn', 'localizable' => 0, ) , ); 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 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__, 'cxn', $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__, 'cxn', $prefix, array()); return $r; } /** * Returns the list of indices */ public static function indices($localize = TRUE) { $indices = array( 'UI_appid' => array( 'name' => 'UI_appid', 'field' => array( 0 => 'app_guid', ) , 'localizable' => false, 'unique' => true, 'sig' => 'civicrm_cxn::1::app_guid', ) , 'UI_keypair_cxnid' => array( 'name' => 'UI_keypair_cxnid', 'field' => array( 0 => 'cxn_guid', ) , 'localizable' => false, 'unique' => true, 'sig' => 'civicrm_cxn::1::cxn_guid', ) , ); return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices; } }