示例#1
0
 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  *
  * @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();
 }
示例#2
0
 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  *
  * @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');
 }
示例#3
0
 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  * 
  * @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');
 }
 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  * 
  * @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();
 }
示例#5
0
 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  * 
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeAction('likes');
     $delFields = Typecho_Widget::widget('Widget_Options')->plugin('TeStat')->delFields;
     if ($delFields) {
         $db = Typecho_Db::get();
         $prefix = $db->getPrefix();
         $db->query('ALTER TABLE `' . $prefix . 'contents` DROP `viewsNum`;');
         $db->query('ALTER TABLE `' . $prefix . 'contents` DROP `likesNum`;');
     }
 }
示例#6
0
 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  * 
  * @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;
 }
示例#7
0
 public static function deactivate()
 {
     Helper::removeAction('SyncPost');
 }
示例#8
0
 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  * 
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeAction('thumbnail');
 }
示例#9
0
 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  *
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeAction('dbmanager');
     Helper::removePanel(1, 'DbManager/panel.php');
 }
示例#10
0
 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  * 
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeAction('wordpress-to-typecho');
     Helper::removePanel(1, 'WordpressToTypecho/panel.php');
 }
示例#11
0
 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  * 
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeAction('tools');
     Helper::removeRoute('sitemap');
 }
示例#12
0
 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  * 
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     $db = Typecho_Db::get();
     $db->delete('table.options')->where('name = ?', 'Ukagaka_starttime');
     Helper::removeAction('Ukagaka');
 }
示例#13
0
 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  * 
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeAction('googlecode-svn');
 }
示例#14
0
 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  *
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeAction('comment-to-mail');
 }
示例#15
0
 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  *
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeAction('emlog-to-typecho');
     Helper::removePanel(1, 'EmlogToTypecho/panel.php');
 }
示例#16
0
 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  * 
  * @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');
 }
示例#17
0
 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  *
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeAction('upload-plugin');
     Helper::removePanel(1, 'UploadPlugin/panel.php');
 }
示例#18
0
 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  * 
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removePanel(3, 'LoginLimit/manage_log.php');
     Helper::removeAction('login_log');
     //删除登录记录的表格
     $db = Typecho_Db::get();
     $prefix = $db->getPrefix();
     try {
         $sql = "drop table " . $prefix . 'loginlog';
         $db->query($sql);
     } catch (Typecho_Db_Exception $e) {
         throw new Typecho_Plugin_Exception('删除登录数据表失败');
     }
     return true;
 }
示例#19
0
 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  * 
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeAction('avatars-delete');
 }
示例#20
0
 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  *
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeAction('typexport');
     Helper::removePanel(1, 'TypExport/panel.php');
 }
示例#21
0
 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  *
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeAction('RoutesHelper');
     Helper::removePanel(4, 'RoutesHelper/panel.php');
 }
示例#22
0
 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  *
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeAction('gallery-edit');
     Helper::removePanel(3, 'HighSlide/manage-gallery.php');
 }
示例#23
0
 public static function deactivate()
 {
     Helper::removeAction('OptimizeDB');
     Helper::removePanel(1, 'OptimizeDB/Panel.php');
 }
示例#24
0
 /**
  * 禁用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');
 }
示例#25
0
文件: Plugin.php 项目: kirileec/usr
 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  * 
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeAction('links-edit');
     Helper::removePanel(3, 'Links/manage-links.php');
 }
示例#26
0
 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  * 
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeAction(github_git);
 }
示例#27
0
 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  *
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeAction(self::$action);
     Helper::removePanel(1, self::$panel);
 }
示例#28
0
 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  * 
  * @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");
 }
示例#29
0
 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  *
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeAction('plugins-kind-upload');
 }
示例#30
0
 /**
  * 禁用插件方法,如果禁用失败,直接抛出异常
  * 
  * @static
  * @access public
  * @return void
  * @throws Typecho_Plugin_Exception
  */
 public static function deactivate()
 {
     Helper::removeAction('like');
 }