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

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

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

/**
 * 
 * 
 * @copyright		[PHPFOX_COPYRIGHT]
 * @author  		Raymond Benc
 * @package  		Module_Admincp
 * @version 		$Id: add.class.php 1931 2010-10-25 11:58:06Z Raymond_Benc $
 */
class Admincp_Component_Controller_Component_Add extends Phpfox_Component
{
	/**
	 * Controller
	 */
	public function process()
	{		
		if (Phpfox::getParam('core.phpfox_is_hosted'))
		{
			$this->url()->send('admincp');
		}		
		
		$bIsEdit = false;
		if (($iId = $this->request()->getInt('id')) && ($aComponent = Admincp_Service_Component_Component::instance()->getForEdit($iId)))
		{
			$bIsEdit = true;
			$this->template()->assign(array(
					'aForms' => $aComponent
				)
			);
		}
		
		$aValidation = array(
			'product_id' => _p('select_product'),
			'component' => _p('specify_component'),
			'is_active' => _p('select_component_active'),
			'type' => _p('select_component_type')
		);		
		
		$oValid = Phpfox_Validator::instance()->set(array('sFormName' => 'js_form', 'aParams' => $aValidation));

		if ($aVals = $this->request()->getArray('val'))
		{			
			if ($oValid->isValid($aVals))
			{
				if ($bIsEdit)
				{
					if (Admincp_Service_Component_Process::instance()->update($iId, $aVals))
					{
						$this->url()->send('admincp.component.add', array('id' => $iId), _p('component_successfully_updated'));
					}
				}
				else 
				{
					if (Admincp_Service_Component_Process::instance()->add($aVals))
					{
						$this->url()->send('admincp.component', null, _p('component_successfully_added'));
					}
				}
			}
		}
		
		$this->template()->setTitle(($bIsEdit ? _p('editing_component') : _p('add_component')))
			->setBreadCrumb(_p('manage_components'), $this->url()->makeUrl('admincp.component'))
			->setBreadCrumb(($bIsEdit ? _p('editing_component') : _p('add_component')), null, true)
			->assign(array(
				'aProducts' => Admincp_Service_Product_Product::instance()->get(),
				'aModules' => Admincp_Service_Module_Module::instance()->getModules(),
				'sCreateJs' => $oValid->createJS(),
				'sGetJsForm' => $oValid->getJsForm(),
				'bIsEdit' => $bIsEdit
			)
		);
	}
	
	/**
	 * 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('admincp.component_controller_component_add_clean')) ? eval($sPlugin) : false);
	}
}