Пример #1
0
 /**
  * @group 56228
  */
 public function testUninstallExtLabels()
 {
     $files = array('custom/Extension/modules/Bugs/Ext/Language/en_us.customopportunities_bugs_1.php' => 'some text', 'custom/Extension/modules/Opportunities/Ext/Language/en_us.customopportunities_bugs_1.php' => 'some text', 'custom/Extension/application/Ext/Language/en_us.customopportunities_bugs_1.php' => 'some text');
     $labelDefinitions = array(array('module' => 'Bugs'), array('module' => 'Opportunities'), array('module' => 'application'));
     $this->writeTestFiles($files);
     $oModuleInstaller = new ModuleInstaller();
     $oModuleInstaller->id_name = 'customopportunities_bugs_1';
     $oModuleInstaller->uninstallExtLabels($labelDefinitions);
     foreach (array_keys($files) as $fileName) {
         $this->assertFileNotExists($fileName);
     }
 }
Пример #2
0
 function delete($rel_name)
 {
     //Remove any fields from layouts
     $rel = $this->get($rel_name);
     if (!empty($rel)) {
         $this->removeFieldsFromDeployedLayout($rel);
     }
     require_once "ModuleInstall/ModuleInstaller.php";
     require_once 'modules/Administration/QuickRepairAndRebuild.php';
     $mi = new ModuleInstaller();
     $mi->silent = true;
     $mi->id_name = 'custom' . $rel_name;
     // provide the moduleinstaller with a unique name for this relationship - normally this value is set to the package key...
     $mi->uninstall_relationship("custom/metadata/{$rel_name}MetaData.php");
     $mi->uninstallLabels('custom/Extension/modules/relationships/language/', $rel->buildLabels());
     $mi->uninstallExtLabels($rel->buildLabels());
     // now clear all caches so that our changes are visible
     Relationship::delete_cache();
     $mi->rebuild_tabledictionary();
     $MBmodStrings = $GLOBALS['mod_strings'];
     $GLOBALS['mod_strings'] = return_module_language('', 'Administration');
     $rac = new RepairAndClear();
     $rac->repairAndClearAll(array('clearAll', 'rebuildExtensions'), array($GLOBALS['mod_strings']['LBL_ALL_MODULES']), true, false);
     $GLOBALS['mod_strings'] = $MBmodStrings;
     //Bug 41070, supercedes the previous 40941 fix in this section
     if (isset($this->relationships[$rel_name])) {
         unset($this->relationships[$rel_name]);
     }
 }