本文整理匯總了PHP中ModuleInstaller::uninstall_relationship方法的典型用法代碼示例。如果您正苦於以下問題:PHP ModuleInstaller::uninstall_relationship方法的具體用法?PHP ModuleInstaller::uninstall_relationship怎麽用?PHP ModuleInstaller::uninstall_relationship使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ModuleInstaller
的用法示例。
在下文中一共展示了ModuleInstaller::uninstall_relationship方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: delete
function delete($rel_name)
{
require_once "ModuleInstall/ModuleInstaller.php";
require_once 'modules/Administration/QuickRepairAndRebuild.php';
$mi = new ModuleInstaller();
$mi->silent = true;
$mi->uninstall_relationship("custom/metadata/{$rel_name}MetaData.php");
// 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;
}
示例2: delete
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->uninstall_relationship("custom/metadata/{$rel_name}MetaData.php");
// 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]);
}
}