Your IP : 216.73.216.11


Current Path : /home/digilove/public_html/plugins/vmcustom/istraxx_download_simple/install/
Upload File :
Current File : /home/digilove/public_html/plugins/vmcustom/istraxx_download_simple/install/install.php

<?php
// No direct access to this file
defined('_JEXEC') or die('Restricted access');

class plgVmCustomIstraxx_download_simpleInstallerScript{

	function install($parent) {

		$this->update($parent);
	}
 
	function uninstall($parent) {

	}
 
	function update($parent) {
		$current = dirname(__FILE__);

		if(!class_exists('GenericTableUpdater')) require(VMPATH_ADMIN .'/helpers/tableupdater.php');
		$updater = new GenericTableUpdater();

		$updater->updateMyVmTables($current .'/install.sql');

	}
 
	function preflight($type, $parent) {
		if (!class_exists( 'VmConfig' )) require(JPATH_ROOT .'/administrator/components/com_virtuemart/helpers/config.php');
		VmConfig::loadConfig();
	}
 
	function postflight($type, $parent) {

	}
	
}