本文整理匯總了PHP中CModule::remove方法的典型用法代碼示例。如果您正苦於以下問題:PHP CModule::remove方法的具體用法?PHP CModule::remove怎麽用?PHP CModule::remove使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類CModule
的用法示例。
在下文中一共展示了CModule::remove方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1:
$obj->store();
$AppUI->setMsg('Module menu state changed', UI_MSG_OK);
break;
case 'install':
// do the module specific stuff
$AppUI->setMsg($setup->install());
$obj->bind($config);
// add to the installed modules table
$obj->install();
$AppUI->setMsg('Module installed', UI_MSG_OK, true);
break;
case 'remove':
// do the module specific stuff
$AppUI->setMsg($setup->remove());
// remove from the installed modules table
$obj->remove();
$AppUI->setMsg('Module removed', UI_MSG_ALERT, true);
break;
case 'upgrade':
if ($setup->upgrade($obj->mod_version)) {
$obj->bind($config);
$obj->store();
$AppUI->setMsg('Module upgraded', UI_MSG_OK);
} else {
$AppUI->setMsg('Module not upgraded', UI_MSG_ERROR);
}
break;
case 'configure':
if ($setup->configure()) {
} else {
$AppUI->setMsg('Module configuration failed', UI_MSG_ERROR);
示例2:
case "toggle":
// just toggle the active state of the table entry
$module->mod_active = 1 - $module->mod_active;
$module->store();
CAppUI::setMsg("CModule-msg-state-changed", UI_MSG_OK);
break;
case "toggleMenu":
// just toggle the active state of the table entry
$module->mod_ui_active = 1 - $module->mod_ui_active;
$module->store();
CAppUI::setMsg("CModule-msg-state-changed", UI_MSG_OK);
break;
case "remove":
$success = $module->_files_missing ? true : $setup->remove();
if ($success !== null) {
$module->remove();
CAppUI::setMsg("CModule-msg-removed", $success ? UI_MSG_OK : UI_MSG_ERROR, true);
}
break;
case "install":
if ($module->mod_version = $setup->upgrade($module->mod_version)) {
$module->mod_type = $setup->mod_type;
$module->install();
if ($setup->mod_version == $module->mod_version) {
CAppUI::setMsg("Installation de '%s' à la version %s", UI_MSG_OK, $module->mod_name, $setup->mod_version);
} else {
CAppUI::setMsg("Installation de '%s' à la version %s sur %s", UI_MSG_WARNING, $module->mod_name, $module->mod_version, $setup->mod_version);
}
} else {
CAppUI::setMsg("Module '{$module->mod_name}' non installé", UI_MSG_ERROR, true);
}