Esempio n. 1
0
 /**
  * Dangerous tools get disabled after execution an operation which needed that rights.
  * This is the function actually doing it.
  *
  * @author Max Milbers
  */
 function setDangerousToolsOff()
 {
     // 		VmConfig::loadConfig(true);
     $dangerousTools = VmConfig::readConfigFile(true);
     if ($dangerousTools) {
         $uri = JFactory::getURI();
         $link = $uri->root() . 'administrator/index.php?option=com_virtuemart&view=config';
         $lang = JText::sprintf('COM_VIRTUEMART_SYSTEM_DANGEROUS_TOOL_STILL_ENABLED', JText::_('COM_VIRTUEMART_ADMIN_CFG_DANGEROUS_TOOLS'), $link);
         VmInfo($lang);
     } else {
         $data['dangeroustools'] = 0;
         $data['virtuemart_config_id'] = 1;
         $this->store($data);
     }
 }