%PDF- %PDF-
 Mini Shell
 Mini Shell  
 | Direktori : /home1/lightco1/luminero.com.au/administrator/components/com_tcpdf/ | 
| Current File : //home1/lightco1/luminero.com.au/administrator/components/com_tcpdf/script.tcpdf.php | 
<?php
defined ('_JEXEC') or die('Restricted access');
/**
 *
 * VirtueMart script file
 *
 * This file is executed during install/upgrade and uninstall
 *
 * @author Patrick Kohl, Max Milbers, Valérie Isaksen
 * @package VirtueMart
 */
defined ('DS') or define('DS', DIRECTORY_SEPARATOR);
$max_execution_time = ini_get ('max_execution_time');
if ((int)$max_execution_time < 120) {
	@ini_set ('max_execution_time', '120');
}
$memory_limit = (int)substr (ini_get ('memory_limit'), 0, -1);
if ($memory_limit < 128) {
	@ini_set ('memory_limit', '128M');
}
// hack to prevent defining these twice in 1.6 installation
if (!defined ('_VM_AIO_SCRIPT_INCLUDED')) {
	define('_VM_AIO_SCRIPT_INCLUDED', TRUE);
	class com_tcpdfInstallerScript {
		public function preflight () {
			//$this->vmInstall();
		}
		public function install () {
			//$this->vmInstall();
		}
		public function discover_install () {
			$this->tcpdfInstall ();
		}
		public function postflight () {
			$this->tcpdfInstall ();
		}
		public function tcpdfInstall () {
			jimport ('joomla.filesystem.file');
			jimport ('joomla.installer.installer');
			$this->path = JInstaller::getInstance ()->getPath ('extension_administrator');
			// libraries auto move
			$src = $this->path . DS . "libraries";
			$dst = JPATH_ROOT . DS . "libraries";
			$this->recurse_copy ($src, $dst);
			echo '<a
					href="http://virtuemart.net"
					target="_blank"> <img
						border="0"
						align="left" style="margin-right: 20px"
						src="components/com_virtuemart/assets/images/vm_menulogo.png"
						alt="Cart" /> </a>';
			echo '<h3 style="clear: both;">TcPdf moved to the joomla libraries folder</h3>';
			echo "<h3>Installation Successful.</h3>";
			return TRUE;
		}
		/**
		 * copy all $src to $dst folder and remove it
		 *
		 * @author Max Milbers
		 * @param String $src path
		 * @param String $dst path
		 * @param String $type modulesBE, modules, plugins, languageBE, languageFE
		 */
		private function recurse_copy ($src, $dst) {
			static $failed = false;
			$dir = opendir ($src);
			if (is_resource ($dir)) {
				while (FALSE !== ($file = readdir ($dir))) {
					if (($file != '.') && ($file != '..')) {
						if (is_dir ($src . DS . $file)) {
							if(!JFolder::create($dst . DS . $file)){
								$app = JFactory::getApplication ();
								$app->enqueueMessage ('Couldnt create folder ' . $dst . DS . $file);
							}
							$this->recurse_copy ($src . DS . $file, $dst . DS . $file);
						} else {
							if (JFile::exists ($dst . DS . $file)) {
								if (!JFile::delete ($dst . DS . $file)) {
									$app = JFactory::getApplication ();
									$app->enqueueMessage ('Couldnt delete ' . $dst . DS . $file);
									//return false;
								}
							}
							if (!JFile::move ($src . DS . $file, $dst . DS . $file)) {
								$app = JFactory::getApplication ();
								$app->enqueueMessage ('Couldnt move ' . $src . DS . $file . ' to ' . $dst . DS . $file);
								$failed = true;
								//return false;
							}
						}
					}
				}
				closedir ($dir);
				if (is_dir ($src) and !$failed) {
					JFolder::delete ($src);
				}
			} else {
				$app = JFactory::getApplication ();
				$app->enqueueMessage ('Couldnt read dir ' . $dir . ' source ' . $src);
				return false;
			}
			return true;
		}
		public function uninstall () {
			return TRUE;
		}
		/**
		 * creates a folder with empty html file
		 *
		 * @author Max Milbers
		 *
		 */
		public function createIndexFolder ($path) {
			if (JFolder::create ($path)) {
				/*if (!JFile::exists ($path . DS . 'index.html')) {
					JFile::copy (JPATH_ROOT . DS . 'components' . DS . 'index.html', $path . DS . 'index.html');
				}*/
				return TRUE;
			}
			return FALSE;
		}
	}
	if (!defined ('_VM_SCRIPT_INCLUDED')) {
		// PLZ look in #vminstall.php# to add your plugin and module
		function com_install () {
			if (!version_compare (JVERSION, '1.6.0', 'ge')) {
				$vmInstall = new com_virtuemart_allinoneInstallerScript();
				$vmInstall->tcpdfInstall ();
			}
			return TRUE;
		}
		function com_uninstall () {
			return TRUE;
		}
	}
} //if defined
// pure php no tag