Файл: upload/module/api/install/version/install.xml.php
Строк: 16
<?php
/** $Id: install.xml.php 668 2009-06-10 17:21:46Z Raymond_Benc $ **/
defined('PHPFOX') or exit('NO DICE!');
?>
<phpfox>
<install><![CDATA[
$aGateways = array(
array(
'gateway_id' => 'paypal',
'title' => 'PayPal',
'description' => 'Some information about PayPal...',
'is_active' => '0',
'is_test' => '0',
'setting' => serialize(array(
'paypal_email' => ''
)
)
),
array(
'gateway_id' => '2checkout',
'title' => '2checkout',
'description' => 'Some information about 2checkout...',
'is_active' => '0',
'is_test' => '0',
'setting' => serialize(array(
'2co_id' => '',
'2co_secret' => ''
)
)
)
);
foreach ($aGateways as $aGateways)
{
$this->database()->insert(Phpfox::getT('api_gateway'), $aGateways);
}
]]></install>
</phpfox>