Page MenuHomeIn-Portal Phabricator

gateway_field_values_config.php
No OneTemporary

File Metadata

Created
Wed, Sep 24, 6:13 AM

gateway_field_values_config.php

<?php
/**
* @version $Id: gateway_field_values_config.php 15656 2013-01-02 17:24:49Z alex $
* @package In-Commerce
* @copyright Copyright (C) 1997 - 2009 Intechnic. All rights reserved.
* @license Commercial License
* This software is protected by copyright law and international treaties.
* Unauthorized reproduction or unlicensed usage of the code of this program,
* or any portion of it may result in severe civil and criminal penalties,
* and will be prosecuted to the maximum extent possible under the law
* See http://www.in-portal.org/commercial-license for copyright notices and details.
*/
defined('FULL_PATH') or die('restricted access!');
$config = Array (
'Prefix' => 'gwfv',
'ItemClass' => Array ('class' => 'kDBItem', 'file' => '', 'build_event' => 'OnItemBuild'),
'ListClass' => Array ('class' => 'kDBList', 'file' => '', 'build_event' => 'OnListBuild'),
'EventHandlerClass' => Array ('class' => 'kDBEventHandler', 'file' => '', 'build_event' => 'OnBuild'),
'TagProcessorClass' => Array ('class' => 'kDBTagProcessor', 'file' => '', 'build_event' => 'OnBuild'),
'AutoLoad' => false,
'QueryString' => Array (
1 => 'id',
2 => 'Page',
3 => 'PerPage',
4 => 'event',
),
'IDField' => 'GWConfigValueId',
'TableName' => TABLE_PREFIX.'GatewayConfigValues',
'ForeignKey' => 'PaymentTypeId',
'ParentTableKey' => 'PaymentTypeId',
'ParentPrefix' => 'pt',
'AutoDelete' => true,
'AutoClone' => true,
'ListSQLs' => Array (
'' => ' SELECT *
FROM %s'
),
'Fields' => Array (
'GWConfigValueId' => Array ('type' => 'int', 'not_null' => 1, 'default' => 0, ),
'GWConfigFieldId' => Array ('type' => 'int', 'not_null' => 1, 'default' => 0, ),
'PaymentTypeId' => Array ('type' => 'int', 'not_null' => 1, 'default' => 0, ),
'Value' => Array ('type' => 'string', 'max_len' => 255, 'default' => null, ),
),
);

Event Timeline