View file PF.Base/module/api/include/component/controller/admincp/gateway/add.class.php

File size: 1.48Kb
<?php
/**
 * [PHPFOX_HEADER]
 */

defined('PHPFOX') or exit('NO DICE!');

/**
 * 
 * 
 * @copyright		[PHPFOX_COPYRIGHT]
 * @author  		Raymond Benc
 * @package 		Phpfox_Component
 * @version 		$Id: add.class.php 979 2009-09-14 14:05:38Z Raymond_Benc $
 */
class Api_Component_Controller_Admincp_Gateway_Add extends Phpfox_Component
{
	/**
	 * Controller
	 */
	public function process()
	{
		$this->_setMenuName('admincp.api.gateway');
		
		if (!($aGateway = Api_Service_Gateway_Gateway::instance()->getForEdit($this->request()->get('id'))))
		{
			return Phpfox_Error::display(_p('unable_to_find_the_payment_gateway'));
		}
		
		if (($aVals = $this->request()->getArray('val')))
		{
			if (Api_Service_Gateway_Process::instance()->update($aGateway['gateway_id'], $aVals))
			{
				$this->url()->send('admincp.api.gateway.add', array('id' => $aGateway['gateway_id']), _p('gateway_successfully_updated'));
			}
		}
		
		$this->template()->setTitle(_p('payment_gateways'))
			->setBreadCrumb(_p('payment_gateways'), $this->url()->makeUrl('admincp.api.gateway'))
			->setBreadCrumb(_p('editing') . ': ' . $aGateway['title'], $this->url()->current(), true)
			->assign(array(
					'aForms' => $aGateway
				)
			);
        return null;
	}
	
	/**
	 * Garbage collector. Is executed after this class has completed
	 * its job and the template has also been displayed.
	 */
	public function clean()
	{
		(($sPlugin = Phpfox_Plugin::get('api.component_controller_admincp_gateway_add_clean')) ? eval($sPlugin) : false);
	}
}