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


PHP Helper::removePanel方法代码示例

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


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

示例1: deactivate

 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  * 
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     $installDb = Typecho_Db::get();
     $installDb->query("DROP TABLE IF EXISTS " . $installDb->getPrefix() . self::$tableName);
     Helper::removeAction('mostcache');
     Helper::removePanel(1, 'MostCache/panel.php');
 }
开发者ID:duxiangfei,项目名称:plugins,代码行数:15,代码来源:Plugin.php

示例2: deactivate

 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  *
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeAction('contribute');
     Helper::removePanel(3, 'Contribute/panel.php');
     self::dropTable();
     self::hiddenPage();
 }
开发者ID:duxiangfei,项目名称:plugins,代码行数:15,代码来源:Plugin.php

示例3: deactivate

 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  *
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeRoute('routeName');
     Helper::removeAction('actionName');
     Helper::removePanel(1, 'MyPlugin/panel.php');
     Helper::removeMenu('menuName');
 }
开发者ID:TPlugin,项目名称:Boilerplate,代码行数:14,代码来源:Plugin.php

示例4: deactivate

 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  * 
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeRoute('share_note');
     Helper::removeAction('notes-manage');
     // Helper::removePanel(2, 'Notes/add-note.php');
     Helper::removePanel(3, 'Notes/manage-notes.php');
     self::uninstall();
 }
开发者ID:ghostboyzone,项目名称:typecho-notes-plugin,代码行数:16,代码来源:Plugin.php

示例5: deactivate

 public static function deactivate()
 {
     $config = Typecho_Widget::widget('Widget_Options')->plugin('Access');
     $isDrop = $config->isDrop;
     if ($isDrop == 0) {
         $db = Typecho_Db::get();
         $prefix = $db->getPrefix();
         $db->query("DROP TABLE `" . $prefix . "access`", Typecho_Db::WRITE);
     }
     Helper::removePanel(1, self::$panel);
 }
开发者ID:ClayMoreBoy,项目名称:typecho-plugin-Access,代码行数:11,代码来源:Plugin.php

示例6: deactivate

 public static function deactivate()
 {
     $config = Typecho_Widget::widget('Widget_Options')->plugin('Robots');
     $isdrop = $config->droptable;
     if ($isdrop == 0) {
         $db = Typecho_Db::get();
         $prefix = $db->getPrefix();
         $db->query("DROP TABLE `" . $prefix . "logs`", Typecho_Db::WRITE);
     }
     Helper::removePanel(1, 'Robots/Logs.php');
 }
开发者ID:kirileec,项目名称:usr,代码行数:11,代码来源:Plugin.php

示例7: uninstall

 public static function uninstall()
 {
     //删除路由
     Helper::removeRoute('baidu_sitemap');
     Helper::removeRoute('baidu_sitemap_advanced');
     Helper::removePanel(1, 'BaiduSubmit/Logs.php');
     //获取配置,是否删除数据表
     if (Helper::options()->plugin('BaiduSubmit')->delete == 1) {
         return self::remove_table();
     }
 }
开发者ID:wujunze,项目名称:wujunze.com,代码行数:11,代码来源:Plugin.php

示例8: deactivate

 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  *
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     include 'helpers/helpers.php';
     //删除下载临时目录
     $tempDir = __TYPECHO_ROOT_DIR__ . __TYPECHO_PLUGIN_DIR__ . self::$tempPath;
     if (file_exists($tempDir) and (!delete_files($tempDir) or !@rmdir($tempDir))) {
         throw new Typecho_Plugin_Exception('无法删除插件下载临时目录.');
     }
     //移除菜单和路由
     Helper::removePanel(1, 'AppStore/market.php');
     Helper::removeRoute('app.store.market');
     Helper::removeRoute('app.store.install');
 }
开发者ID:xau0at,项目名称:AppStore,代码行数:21,代码来源:Plugin.php

示例9: deactivate

 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  * 
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeAction('DomainTheme-edit');
     Helper::removePanel(1, 'DomainTheme/manage-domaintheme.php');
     //删除登录记录的表格
     $db = Typecho_Db::get();
     $prefix = $db->getPrefix();
     try {
         $sql = "drop table " . $prefix . 'domaintheme';
         $db->query($sql);
     } catch (Typecho_Db_Exception $e) {
         throw new Typecho_Plugin_Exception('删除登录数据表失败');
     }
     return true;
 }
开发者ID:hongweipeng,项目名称:cool_blog,代码行数:23,代码来源:Plugin.php

示例10: deactivate

 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  * 
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeAction('kgsoft_dbbak');
     Helper::removePanel(1, "TEDbBak/MainView.php");
     Helper::removeRoute("forbiddenUrl");
 }
开发者ID:nbdarling,项目名称:typechoi7-master,代码行数:14,代码来源:Plugin.php

示例11: deactivate

 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  * 
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeAction('wordpress-to-typecho');
     Helper::removePanel(1, 'WordpressToTypecho/panel.php');
 }
开发者ID:luobenyu,项目名称:plugins,代码行数:13,代码来源:Plugin.php

示例12: deactivate

 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  * 
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeAction('huifeng-members-edit');
     Helper::removePanel(3, 'HuifengMembers/manage-members.php');
 }
开发者ID:wedojava,项目名称:HuifengMember,代码行数:13,代码来源:Plugin.php

示例13: deactivate

 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  *
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeAction(self::$action);
     Helper::removePanel(1, self::$panel);
 }
开发者ID:wujunze,项目名称:wujunze.com,代码行数:13,代码来源:Plugin.php

示例14: deactivate

 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  *
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeAction('typexport');
     Helper::removePanel(1, 'TypExport/panel.php');
 }
开发者ID:colloq168,项目名称:TypExport,代码行数:13,代码来源:Plugin.php

示例15: deactivate

 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  * 
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removePanel(0, 'UEditor/ueditor/ueditor.config.js.php');
 }
开发者ID:Fengtalk,项目名称:UEditor-for-Typecho,代码行数:12,代码来源:Plugin.php


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