當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Helper::removeRoute方法代碼示例

本文整理匯總了PHP中Helper::removeRoute方法的典型用法代碼示例。如果您正苦於以下問題:PHP Helper::removeRoute方法的具體用法?PHP Helper::removeRoute怎麽用?PHP Helper::removeRoute使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Helper的用法示例。


在下文中一共展示了Helper::removeRoute方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: deactivate

 /**
  * 禁用插件方法,如果禁用失敗,直接拋出異常
  * 
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     //Helper::removeRoute("ChildApi");
     Helper::removeRoute("MainApi");
     //Helper::removeAction("api");
     return _t('關閉網站API接口');
 }
開發者ID:jiusanzhou,項目名稱:spacms,代碼行數:15,代碼來源:Plugin.php

示例2: deactivate

 /**
  * 禁用插件方法,如果禁用失敗,直接拋出異常
  * 
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removePanel(1, 'TeStore/market.php');
     Helper::removeRoute('te-store_market');
     Helper::removeRoute('te-store_install');
     Helper::removeRoute('te-store_uninstall');
 }
開發者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()
 {
     Helper::removeRoute('ymplayer_ajax');
     $files = glob(dirname(__FILE__) . '/cache/*');
     foreach ($files as $file) {
         if (is_file($file)) {
             unlink($file);
         }
     }
 }
開發者ID:changlor,項目名稱:typecho-plugin-ymplayer,代碼行數:10,代碼來源:Plugin.php

示例6: 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

示例7: 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);
     Helper::removeRoute("access_ipip");
 }
開發者ID:kirainmoe,項目名稱:typecho-plugin-Access,代碼行數:12,代碼來源: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: edit

 /**
  * 修改路由
  */
 public function edit()
 {
     $modified = false;
     if ($this->request->isPost()) {
         foreach ($this->_default as $key => $value) {
             if (array_key_exists($key, $this->_restore) && $this->request->__isSet($key) && $this->request->{$key} != $this->_default[$key]['url'] && $key != 'do') {
                 Helper::removeRoute($key);
                 Helper::addRoute($key, $this->request->{$key}, $this->_default[$key]['widget'], $this->_default[$key]['action']);
                 $modified = true;
             }
         }
     }
     if ($modified) {
         $this->widget('Widget_Notice')->set(_t("路由變更已經保存"), NULL, 'success');
     } else {
         $this->widget('Widget_Notice')->set(_t("路由未變更"), NULL, 'notice');
     }
 }
開發者ID:duxiangfei,項目名稱:plugins,代碼行數:21,代碼來源:Action.php

示例10: deactivate

 /**
  * 禁用插件方法,如果禁用失敗,直接拋出異常
  * 
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeRoute('oauth');
     Helper::removeRoute('oauth_callback');
 }
開發者ID:jiangmuzi,項目名稱:TeConnect,代碼行數:13,代碼來源:Plugin.php

示例11: deactivate

 /**
  * 禁用插件方法,如果禁用失敗,直接拋出異常
  * 
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeAction('tools');
     Helper::removeRoute('sitemap');
 }
開發者ID:jiangmuzi,項目名稱:jianshu,代碼行數:13,代碼來源:Plugin.php

示例12: 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

示例13: deactivate

 /**
  * 禁用插件方法,如果禁用失敗,直接拋出異常
  *
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeRoute('passport_reset');
     Helper::removeRoute('passport_forgot');
 }
開發者ID:TPlugin,項目名稱:Passport,代碼行數:12,代碼來源:Plugin.php

示例14: deactivate

 /**
  * 禁用duoshuo方法,如果禁用失敗,直接拋出異常
  * 
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeAction('duoshuo-edit');
     Helper::removeRoute('DuoShuoSync');
     Helper::removePanel(3, 'Duoshuo/manage-duoshuo.php');
 }
開發者ID:wujunze,項目名稱:wujunze.com,代碼行數:14,代碼來源:Plugin.php

示例15: resetLink

 /**
  * 重設自定義鏈接
  */
 public function resetLink()
 {
     $link = $this->request->link;
     Helper::removeRoute('go');
     Helper::addRoute('go', $link, 'GoLinks_Action', 'golink');
     Typecho_Response::throwJson('success');
 }
開發者ID:duxiangfei,項目名稱:plugins,代碼行數:10,代碼來源:Action.php


注:本文中的Helper::removeRoute方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。