本文整理汇总了PHP中VmModel::getInstance方法的典型用法代码示例。如果您正苦于以下问题:PHP VmModel::getInstance方法的具体用法?PHP VmModel::getInstance怎么用?PHP VmModel::getInstance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类VmModel
的用法示例。
在下文中一共展示了VmModel::getInstance方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: disableDangerousTools
/**
*
* Task for disabling dangerous database tools, used after install
* @author Max Milbers
*/
public function disableDangerousTools(){
$data = vRequest::getRequest();
$config = VmModel::getInstance('config', 'VirtueMartModel');
$config->setDangerousToolsOff();
$this->display();
}
示例2: install
/**
* Install script
* Triggers after database processing
*
* @param object JInstallerComponent parent
* @return boolean True on success
*/
public function install($loadVm = true)
{
if ($loadVm) {
$this->loadVm();
}
if ($this->checkIfUpdate()) {
return $this->update($loadVm);
}
$_REQUEST['install'] = 1;
if (!class_exists('JFile')) {
require JPATH_VM_LIBRARIES . DS . 'joomla' . DS . 'filesystem' . DS . 'file.php';
}
if (!class_exists('JFolder')) {
require JPATH_VM_LIBRARIES . DS . 'joomla' . DS . 'filesystem' . DS . 'folder.php';
}
$this->joomlaSessionDBToMediumText();
// install essential and required data
// should this be covered in install.sql (or 1.6's JInstaller::parseSchemaUpdates)?
// if(!class_exists('VirtueMartModelUpdatesMigration')) require(JPATH_VM_ADMINISTRATOR.DS.'models'.DS.'updatesMigration.php');
$params = JComponentHelper::getParams('com_languages');
$lang = $params->get('site', 'en-GB');
//use default joomla
$lang = strtolower(strtr($lang, '-', '_'));
if (!class_exists('VmModel')) {
require $this->path . DS . 'helpers' . DS . 'vmmodel.php';
}
$model = VmModel::getInstance('updatesmigration', 'VirtueMartModel');
$model->execSQLFile($this->path . DS . 'install' . DS . 'install.sql');
$model->execSQLFile($this->path . DS . 'install' . DS . 'install_essential_data.sql');
$model->execSQLFile($this->path . DS . 'install' . DS . 'install_required_data.sql');
$model->setStoreOwner();
//copy sampel media
$src = $this->path . DS . 'assets' . DS . 'images' . DS . 'vmsampleimages';
// if(version_compare(JVERSION,'1.6.0','ge')) {
$this->createIndexFolder(JPATH_ROOT . DS . 'images' . DS . 'stories');
$this->createIndexFolder(JPATH_ROOT . DS . 'images' . DS . 'stories' . DS . 'virtuemart');
$this->createIndexFolder(JPATH_ROOT . DS . 'images' . DS . 'stories' . DS . 'virtuemart' . DS . 'shipment');
$this->createIndexFolder(JPATH_ROOT . DS . 'images' . DS . 'stories' . DS . 'virtuemart' . DS . 'payment');
$this->createIndexFolder(JPATH_ROOT . DS . 'images' . DS . 'stories' . DS . 'virtuemart' . DS . 'category');
$this->createIndexFolder(JPATH_ROOT . DS . 'images' . DS . 'stories' . DS . 'virtuemart' . DS . 'category' . DS . 'resized');
$this->createIndexFolder(JPATH_ROOT . DS . 'images' . DS . 'stories' . DS . 'virtuemart' . DS . 'manufacturer');
$this->createIndexFolder(JPATH_ROOT . DS . 'images' . DS . 'stories' . DS . 'virtuemart' . DS . 'manufacturer' . DS . 'resized');
$this->createIndexFolder(JPATH_ROOT . DS . 'images' . DS . 'stories' . DS . 'virtuemart' . DS . 'product');
$this->createIndexFolder(JPATH_ROOT . DS . 'images' . DS . 'stories' . DS . 'virtuemart' . DS . 'product' . DS . 'resized');
$this->createIndexFolder(JPATH_ROOT . DS . 'images' . DS . 'stories' . DS . 'virtuemart' . DS . 'forSale');
$this->createIndexFolder(JPATH_ROOT . DS . 'images' . DS . 'stories' . DS . 'virtuemart' . DS . 'forSale' . DS . 'invoices');
$this->createIndexFolder(JPATH_ROOT . DS . 'images' . DS . 'stories' . DS . 'virtuemart' . DS . 'forSale' . DS . 'resized');
$this->createIndexFolder(JPATH_ROOT . DS . 'images' . DS . 'stories' . DS . 'virtuemart' . DS . 'typeless');
$dst = JPATH_ROOT . DS . 'images' . DS . 'stories' . DS . 'virtuemart';
$this->recurse_copy($src, $dst);
if (!class_exists('GenericTableUpdater')) {
require $this->path . DS . 'helpers' . DS . 'tableupdater.php';
}
$updater = new GenericTableUpdater();
$updater->createLanguageTables();
$this->checkAddDefaultShoppergroups();
$this->displayFinished(false);
//include($this->path.DS.'install'.DS.'install.virtuemart.html.php');
// perhaps a redirect to updatesMigration here rather than the html file?
// $parent->getParent()->setRedirectURL('index.php?option=com_virtuemart&view=updatesMigration');
return true;
}