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

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

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

/**
 * 
 * 
 * @copyright		[PHPFOX_COPYRIGHT]
 * @author  		Raymond Benc
 * @package 		Phpfox_Component
 * @version 		$Id: add.class.php 1121 2009-10-01 12:59:13Z Raymond_Benc $
 */
class Custom_Component_Controller_Admincp_Group_Add extends Phpfox_Component
{
	/**
	 * Controller
	 */
	public function process()
	{
		$bIsEdit = false;
		
		if (($iEditId = $this->request()->getInt('id')))
		{
			Phpfox::getUserParam('custom.can_manage_custom_fields', true);
			
			if (($aGroup = Custom_Service_Group_Group::instance()->getForEdit($iEditId)) && isset($aGroup['group_id']))
			{
				$bIsEdit = true;
				$this->template()->assign(array(
						'aForms' => $aGroup
					)
				);
			}
		}
		else 
		{
			Phpfox::getUserParam('custom.can_add_custom_fields_group', true);
		}
		
		$aGroupValidation = array(
			'product_id' => _p('select_a_product_this_custom_field_will_belong_to'),
			'module_id' => _p('select_a_module_this_custom_field_will_belong_to'),
			'type_id' => _p('select_where_this_custom_field_should_be_located')
		);
		
		$oGroupValidator = Phpfox_Validator::instance()->set(array(
				'sFormName' => 'js_group_field', 
				'aParams' => $aGroupValidation,
				'bParent' => true
			)
		);		
		
		$aGroupTypes = array();
		foreach (Phpfox::massCallback('getCustomGroups') as $sModule => $aCustomGroups)
		{
			foreach ($aCustomGroups as $sKey => $sPhrase)
			{
				$aGroupTypes[$sKey] = $sPhrase;
			}
		}	
		
		if (($aVals = $this->request()->getArray('val')))
		{
			if ($oGroupValidator->isValid($aVals))
			{
				if ($bIsEdit === true)
				{
					if (Custom_Service_Group_Process::instance()->update($aGroup['group_id'], $aVals))
					{
						$this->url()->send('admincp.custom.group.add', array('id' => $aGroup['group_id']), _p('group_successfully_updated'));
					}
				}
				else 
				{
					if (Custom_Service_Group_Process::instance()->add($aVals))
					{
						$this->url()->send('admincp.custom.group.add', null, _p('group_successfully_added'));
					}
				}
			}
		}
		
		$aUserGroups = User_Service_Group_Group::instance()->get();
		foreach ($aUserGroups as $iKey => $aUserGroup)
		{
			if (!Phpfox::getUserGroupParam($aUserGroup['user_group_id'], 'custom.has_special_custom_fields'))
			{
				unset($aUserGroups[$iKey]);
			}
		}		
		
		$this->template()->setTitle(_p('add_a_new_custom_group'))
			->setBreadCrumb(_p('add_a_new_custom_group'))
			->assign(array(
					'sGroupCreateJs' => $oGroupValidator->createJS(),
					'sGroupGetJsForm' => $oGroupValidator->getJsForm(),
					'aGroupTypes' => $aGroupTypes,
					'bIsEdit' => $bIsEdit,
					'aUserGroups' => $aUserGroups
				)
			);
	}
	
	/**
	 * 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('custom.component_controller_admincp_group_add_clean')) ? eval($sPlugin) : false);
	}
}