parent = $parent; if (version_compare(PHP_VERSION, '5.3.1', '<')) { $this->loadLanguage(); Jerror::raiseWarning(null, JText::sprintf('COM_JEDCHECKER_PHP_VERSION_INCOMPATIBLE', PHP_VERSION, '5.3.6')); return false; } } /** * Update cleans out any old rules. * * @param JInstallerComponent $parent Is the class calling this method. * * @return bool|null If this returns false, Joomla will abort the update and undo everything already done. */ public function update($parent) { // Doing it this way in case there are other old rules to be deleted $oldRules = array('htmlindexes'); foreach ($oldRules as $rule) { $rulePhpFile = JPATH_ADMINISTRATOR . $this->extension . 'libraries/rules/' . $rule . '.php'; $ruleIniFile = JPATH_ADMINISTRATOR . $this->extension . 'libraries/rules/' . $rule . '.ini'; // Remove the rule's php file if(file_exists($rulePhpFile)) { if(JFile::delete($rulePhpFile)) { echo JText::sprintf('COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_REMOVED', $rule); } else { echo JText::sprintf('COM_JEDCHECKER_OLD_RULE_X_PHP_FILE_NOT_REMOVED', $rule); } } // Remove the rule's ini file if(file_exists($ruleIniFile)) { if(JFile::delete($ruleIniFile)) { echo JText::sprintf('COM_JEDCHECKER_OLD_RULE_X_INI_FILE_REMOVED', $rule); } else { echo JText::sprintf('COM_JEDCHECKER_OLD_RULE_X_INI_FILE_NOT_REMOVED', $rule); } } } } public function loadLanguage() { $extension = $this->extension; $jlang = JFactory::getLanguage(); $path = $this->parent->getParent()->getPath('source') . '/administrator'; $jlang->load($extension, $path, 'en-GB', true); $jlang->load($extension, $path, $jlang->getDefault(), true); $jlang->load($extension, $path, null, true); $jlang->load($extension . '.sys', $path, 'en-GB', true); $jlang->load($extension . '.sys', $path, $jlang->getDefault(), true); $jlang->load($extension . '.sys', $path, null, true); } }