Page MenuHomeIn-Portal Phabricator

gateway_field_values_config.php
No OneTemporary

File Metadata

Created
Sat, Sep 20, 6:20 AM

gateway_field_values_config.php

<?php
/**
* @version $Id: gateway_field_values_config.php 13156 2010-02-23 20:11:38Z 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,
'hooks' => Array(),
'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'
), // key - special, value - list select sql
'ItemSQLs' => 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