75 lines
2.5 KiB
PHP
Executable File
75 lines
2.5 KiB
PHP
Executable File
<?php
|
|
/*
|
|
* 2007-2011 PrestaShop
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This source file is subject to the Open Software License (OSL 3.0)
|
|
* that is bundled with this package in the file LICENSE.txt.
|
|
* It is also available through the world-wide-web at this URL:
|
|
* http://opensource.org/licenses/osl-3.0.php
|
|
* If you did not receive a copy of the license and are unable to
|
|
* obtain it through the world-wide-web, please send an email
|
|
* to license@prestashop.com so we can send you a copy immediately.
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
|
* versions in the future. If you wish to customize PrestaShop for your
|
|
* needs please refer to http://www.prestashop.com for more information.
|
|
*
|
|
* @author PrestaShop SA <contact@prestashop.com>
|
|
* @copyright 2007-2011 PrestaShop SA
|
|
* @version Release: $Revision: 6594 $
|
|
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*/
|
|
|
|
class PaymentCCCore extends ObjectModel
|
|
{
|
|
public $id_order;
|
|
public $id_currency;
|
|
public $amount;
|
|
public $transaction_id;
|
|
public $card_number;
|
|
public $card_brand;
|
|
public $card_expiration;
|
|
public $card_holder;
|
|
public $date_add;
|
|
|
|
protected $fieldsRequired = array('id_currency', 'amount');
|
|
protected $fieldsSize = array('transaction_id' => 254, 'card_number' => 254, 'card_brand' => 254, 'card_expiration' => 254, 'card_holder' => 254);
|
|
protected $fieldsValidate = array(
|
|
'id_order' => 'isUnsignedId', 'id_currency' => 'isUnsignedId', 'amount' => 'isPrice',
|
|
'transaction_id' => 'isAnything', 'card_number' => 'isAnything', 'card_brand' => 'isAnything', 'card_expiration' => 'isAnything', 'card_holder' => 'isAnything');
|
|
|
|
protected $table = 'payment_cc';
|
|
protected $identifier = 'id_payment_cc';
|
|
|
|
public function getFields()
|
|
{
|
|
parent::validateFields();
|
|
$fields['id_order'] = (int)($this->id_order);
|
|
$fields['id_currency'] = (int)($this->id_currency);
|
|
$fields['amount'] = (float)($this->amount);
|
|
$fields['transaction_id'] = pSQL($this->transaction_id);
|
|
$fields['card_number'] = pSQL($this->card_number);
|
|
$fields['card_brand'] = pSQL($this->card_brand);
|
|
$fields['card_expiration'] = pSQL($this->card_expiration);
|
|
$fields['card_holder'] = pSQL($this->card_holder);
|
|
$fields['date_add'] = pSQL($this->date_add);
|
|
return $fields;
|
|
}
|
|
|
|
public function add($autodate = true, $nullValues = false)
|
|
{
|
|
if (parent::add($autodate, $nullValues))
|
|
{
|
|
Module::hookExec('paymentCCAdded', array('paymentCC' => $this));
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
|