当前位置: 首页>>代码示例>>PHP>>正文


PHP VmModel::getInstance方法代码示例

本文整理汇总了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();
	}
开发者ID:kosmosby,项目名称:medicine-prof,代码行数:12,代码来源:virtuemart.php

示例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;
 }
开发者ID:lenard112,项目名称:cms,代码行数:69,代码来源:script.virtuemart.php


注:本文中的VmModel::getInstance方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。