当前位置: 首页>>代码示例>>PHP>>正文


PHP ConfigManager::delete方法代码示例

本文整理汇总了PHP中ConfigManager::delete方法的典型用法代码示例。如果您正苦于以下问题:PHP ConfigManager::delete方法的具体用法?PHP ConfigManager::delete怎么用?PHP ConfigManager::delete使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ConfigManager的用法示例。


在下文中一共展示了ConfigManager::delete方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: uninstall

 public function uninstall()
 {
     $this->drop_tables();
     ConfigManager::delete('web', 'config');
     CacheManager::invalidate('module', 'web');
     WebService::get_keywords_manager()->delete_module_relations();
 }
开发者ID:AroundPBT,项目名称:PHPBoost,代码行数:7,代码来源:WebSetup.class.php

示例2: uninstall

 public function uninstall()
 {
     $this->drop_tables();
     ConfigManager::delete('news', 'config');
     NewsService::get_keywords_manager()->delete_module_relations();
 }
开发者ID:AroundPBT,项目名称:PHPBoost,代码行数:6,代码来源:NewsSetup.class.php

示例3: htmlentities

        } else {
            $actionMessage = "Erreur Modification Config : Vous devez remplir le champ 'indexContent'.";
            $typeMessage = "error";
        }
    } else {
        if ($action == "changeIndexContent") {
            $indexContent = htmlentities($_POST['indexContent']);
            $configManager->changeIndexContent($indexContent);
            $actionMessage = "Opération Valide : Configuration Modifié(e) avec succès.";
            $typeMessage = "success";
        } else {
            if ($action == "changeSliderType") {
                $sliderType = htmlentities($_POST['sliderType']);
                $configManager->changeSliderType($sliderType);
                $actionMessage = "Opération Valide : Configuration Modifié(e) avec succès.";
                $typeMessage = "success";
            } else {
                if ($action == "delete") {
                    $idConfig = htmlentities($_POST['idConfig']);
                    $configManager->delete($idConfig);
                    $actionMessage = "Opération Valide : Config supprimé(e) avec succès.";
                    $typeMessage = "success";
                }
            }
        }
    }
}
//Action Delete Processing End
$_SESSION['config-action-message'] = $actionMessage;
$_SESSION['config-type-message'] = $typeMessage;
header('Location:../configuration.php');
开发者ID:aassou,项目名称:AnnahdaWebsiteCanvas,代码行数:31,代码来源:ConfigActionController.php

示例4: delete_configuration

 private function delete_configuration()
 {
     ConfigManager::delete('guestbook', 'config');
 }
开发者ID:AroundPBT,项目名称:PHPBoost,代码行数:4,代码来源:GuestbookSetup.class.php

示例5: uninstall

 public function uninstall()
 {
     $this->drop_tables();
     ConfigManager::delete('media', 'config');
 }
开发者ID:AroundPBT,项目名称:PHPBoost,代码行数:5,代码来源:MediaSetup.class.php

示例6: uninstall

 public function uninstall()
 {
     ConfigManager::delete('question-captcha', 'config');
     return AppContext::get_captcha_service()->uninstall_captcha('QuestionCaptcha');
 }
开发者ID:AroundPBT,项目名称:PHPBoost,代码行数:5,代码来源:QuestionCaptchaSetup.class.php

示例7: uninstall

 public function uninstall()
 {
     $this->drop_tables();
     ConfigManager::delete('faq', 'config');
     CacheManager::invalidate('module', 'faq');
 }
开发者ID:AroundPBT,项目名称:PHPBoost,代码行数:6,代码来源:FaqSetup.class.php

示例8: uninstall

 public function uninstall()
 {
     $this->drop_tables();
     ConfigManager::delete('forum', 'config');
     $this->delete_member_extended_field();
 }
开发者ID:AroundPBT,项目名称:PHPBoost,代码行数:6,代码来源:ForumSetup.class.php


注:本文中的ConfigManager::delete方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。