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

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

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

/**
 * 
 * 
 * @copyright		[PHPFOX_COPYRIGHT]
 * @author  		Raymond Benc
 * @package  		Module_Admincp
 * @version 		$Id: file.class.php 852 2009-08-10 18:05:32Z Raymond_Benc $
 */
class Admincp_Component_Controller_Setting_File extends Phpfox_Component 
{
	/**
	 * Controller
	 */
	public function process()
	{	
		$aValidExt = array(
			'xml',
			'zip',
			'tar.gz'
		);
		
		$oArchiveExport = Phpfox::getLib('archive.export')->set($aValidExt);
		$oArchiveImport = Phpfox::getLib('archive.import')->set($aValidExt);
		
		// Run the export routine
		if ($iExportId = $this->request()->get('export'))
		{
			if ($sXml = Admincp_Service_Setting_Setting::instance()->export($iExportId))
			{		
				$oArchiveExport->download($this->request()->get('file_extension'), 'phpfox_setting.xml', $sXml);
			}
		}

		// Run the import routine
		if (($aFile = $this->request()->get('import')))
		{
			if ($sXmlData = $oArchiveImport->process($aFile))
			{			
				$aParams = Phpfox::getLib('xml.parser')->parse($sXmlData);
				
				// Import the settings
				if (($iImported = Admincp_Service_Setting_Process::instance()->import($aParams, true)))
				{
					// Settings imported, mention how many settings were imported.
					$this->url()->send('admincp', array('setting', 'file'), _p('setting_imported', array('total' => $iImported)));
				}
				else 
				{
					if (is_numeric($iImported))
					{
						// Nothing new to import
						Phpfox_Error::set(_p('nothing_new_import'));
					}
				}				
			}
		}
		
		// Assign needed vars to the template
		$this->template()->assign(array(
			'aProducts' => Admincp_Service_Product_Product::instance()->get(),
			'aArchives' => $oArchiveExport->getSupported(),
			'sSupported' => $oArchiveImport->getSupported()
		))->setBreadCrumb(_p('import_export_settings'))
			->setTitle(_p('import_export_settings'));
			
		(($sPlugin = Phpfox_Plugin::get('admincp.component_controller_setting_file_process')) ? eval($sPlugin) : false);
	}
	
	/**
	 * 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_setting_file_clean')) ? eval($sPlugin) : false);
	}
}