-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
53 changed files
with
3,396 additions
and
309 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,235 @@ | ||
<?php | ||
/* | ||
+--------------------------------------------------------------------+ | ||
| CiviCRM version 3.3 | | ||
+--------------------------------------------------------------------+ | ||
| Copyright CiviCRM LLC (c) 2004-2010 | | ||
+--------------------------------------------------------------------+ | ||
| This file is a part of CiviCRM. | | ||
| | | ||
| CiviCRM is free software; you can copy, modify, and distribute it | | ||
| under the terms of the GNU Affero General Public License | | ||
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. | | ||
| | | ||
| CiviCRM is distributed in the hope that it will be useful, but | | ||
| WITHOUT ANY WARRANTY; without even the implied warranty of | | ||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | | ||
| See the GNU Affero General Public License for more details. | | ||
| | | ||
| You should have received a copy of the GNU Affero General Public | | ||
| License and the CiviCRM Licensing Exception along | | ||
| with this program; if not, contact CiviCRM LLC | | ||
| at info[AT]civicrm[DOT]org. If you have questions about the | | ||
| GNU Affero General Public License or the licensing of CiviCRM, | | ||
| see the CiviCRM license FAQ at http://civicrm.org/licensing | | ||
+--------------------------------------------------------------------+ | ||
*/ | ||
/** | ||
* | ||
* @package CRM | ||
* @copyright CiviCRM LLC (c) 2004-2010 | ||
* $Id$ | ||
* | ||
*/ | ||
require_once 'CRM/Core/DAO.php'; | ||
require_once 'CRM/Utils/Type.php'; | ||
class CRM_Contribute_DAO_SPGATEWAY extends CRM_Core_DAO | ||
{ | ||
/** | ||
* static instance to hold the table name | ||
* | ||
* @var string | ||
* @static | ||
*/ | ||
static $_tableName = 'civicrm_contribution_spgateway'; | ||
/** | ||
* static instance to hold the field values | ||
* | ||
* @var array | ||
* @static | ||
*/ | ||
static $_fields = null; | ||
/** | ||
* static instance to hold the FK relationships | ||
* | ||
* @var string | ||
* @static | ||
*/ | ||
static $_links = null; | ||
/** | ||
* static instance to hold the values that can | ||
* be imported / apu | ||
* | ||
* @var array | ||
* @static | ||
*/ | ||
static $_import = null; | ||
/** | ||
* static instance to hold the values that can | ||
* be exported / apu | ||
* | ||
* @var array | ||
* @static | ||
*/ | ||
static $_export = null; | ||
/** | ||
* static value to see if we should log any modifications to | ||
* this table in the civicrm_log table | ||
* | ||
* @var boolean | ||
* @static | ||
*/ | ||
static $_log = false; | ||
/** | ||
* | ||
* @var int unsigned | ||
*/ | ||
public $id; | ||
/** | ||
* FK to contribution table | ||
* | ||
* @var int unsigned | ||
*/ | ||
public $cid; | ||
/** | ||
* Spgateway return data | ||
* | ||
* @var blob | ||
*/ | ||
public $data; | ||
/** | ||
* class constructor | ||
* | ||
* @access public | ||
* @return civicrm_contribution_spgateway | ||
*/ | ||
function __construct() | ||
{ | ||
parent::__construct(); | ||
} | ||
/** | ||
* return foreign links | ||
* | ||
* @access public | ||
* @return array | ||
*/ | ||
function &links() | ||
{ | ||
if (!(self::$_links)) { | ||
self::$_links = array( | ||
'cid' => 'civicrm_contribution:id', | ||
); | ||
} | ||
return self::$_links; | ||
} | ||
/** | ||
* Returns foreign keys and entity references. | ||
* | ||
* @return array | ||
* [CRM_Core_Reference_Interface] | ||
*/ | ||
public 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() , 'cid', 'civicrm_contribution', 'id'); | ||
} | ||
return Civi::$statics[__CLASS__]['links']; | ||
} | ||
/** | ||
* 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, | ||
) , | ||
'spgateway_contribution_id' => array( | ||
'name' => 'cid', | ||
'type' => CRM_Utils_Type::T_INT, | ||
'title' => ts('Spgateway Contribution ID') , | ||
'FKClassName' => 'CRM_Contribute_DAO_Contribution', | ||
) , | ||
'data' => array( | ||
'name' => 'data', | ||
'type' => CRM_Utils_Type::T_BLOB, | ||
'title' => ts('Data') , | ||
) , | ||
); | ||
} | ||
return self::$_fields; | ||
} | ||
/** | ||
* returns the names of this table | ||
* | ||
* @access public | ||
* @return string | ||
*/ | ||
static function getTableName() | ||
{ | ||
return self::$_tableName; | ||
} | ||
/** | ||
* returns if this table needs to be logged | ||
* | ||
* @access public | ||
* @return boolean | ||
*/ | ||
function getLog() | ||
{ | ||
return self::$_log; | ||
} | ||
/** | ||
* returns the list of fields that can be imported | ||
* | ||
* @access public | ||
* 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['contribution_spgateway'] = &$fields[$name]; | ||
} else { | ||
self::$_import[$name] = &$fields[$name]; | ||
} | ||
} | ||
} | ||
} | ||
return self::$_import; | ||
} | ||
/** | ||
* returns the list of fields that can be exported | ||
* | ||
* @access public | ||
* 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['contribution_spgateway'] = &$fields[$name]; | ||
} else { | ||
self::$_export[$name] = &$fields[$name]; | ||
} | ||
} | ||
} | ||
} | ||
return self::$_export; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.