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


PHP JFolder::remove方法代碼示例

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


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

示例1: com_uninstall

 /**
  * Legacy j1.5 function to use the 1.6 class uninstall
  *
  * @return boolean True on success
  * @deprecated
  */
 function com_uninstall()
 {
     if (version_compare(JVERSION, '1.7.0', 'ge')) {
         // Joomla! 1.7 code here
     } elseif (version_compare(JVERSION, '1.6.0', 'ge')) {
         // Joomla! 1.6 code here
     } else {
         // Joomla! 1.5 code here
         jimport('joomla.filesystem.folder');
         jimport('joomla.filesystem.file');
         jimport('joomla.filesystem.archive');
         if (file_exists(JPATH_SITE . DS . 'plugins' . DS . 'vmextended' . DS . 'opc.xml')) {
             JFile::delete(JPATH_SITE . DS . 'plugins' . DS . 'vmextended' . DS . 'opc.xml');
         }
         if (file_exists(JPATH_SITE . DS . 'plugins' . DS . 'vmextended' . DS . 'opc.php')) {
             JFile::delete(JPATH_SITE . DS . 'plugins' . DS . 'vmextended' . DS . 'opc.php');
         }
         if (file_exists(JPATH_SITE . DS . 'plugins' . DS . 'system' . DS . 'opc.xml')) {
             JFile::delete(JPATH_SITE . DS . 'plugins' . DS . 'system' . DS . 'opc.xml');
         }
         if (file_exists(JPATH_SITE . DS . 'plugins' . DS . 'system' . DS . 'opc.php')) {
             JFile::delete(JPATH_SITE . DS . 'plugins' . DS . 'system' . DS . 'opc.php');
         }
         if (file_exists(JPATH_SITE . DS . 'plugins' . DS . 'vmpayment' . DS . 'opctracking.xml')) {
             JFile::delete(JPATH_SITE . DS . 'plugins' . DS . 'vmpayment' . DS . 'opctracking.xml');
         }
         if (file_exists(JPATH_SITE . DS . 'plugins' . DS . 'vmpayment' . DS . 'opctracking.php')) {
             JFile::delete(JPATH_SITE . DS . 'plugins' . DS . 'vmpayment' . DS . 'opctracking.php');
         }
         if (file_exists(JPATH_SITE . DS . 'components' . DS . 'themes')) {
             if (@JFolder::remove(JPATH_SITE . DS . 'components' . DS . 'themes') === false) {
                 echo 'Cannot remove themes directory! Please remove it manually from /components/com_onepage';
             }
         }
         if (@JFolder::delete(JPATH_SITE . DS . 'libraries' . DS . 'joomla' . DS . 'document' . DS . 'opchtml') === false) {
             echo 'Cannot remove OPC document type in: ' . JPATH_SITE . DS . 'libraries' . DS . 'joomla' . DS . 'document' . DS . 'opchtml<br />';
         }
         $db = JFactory::getDBO();
         $q = "delete from #__plugins where element = 'opc' limit 5";
         $db->setQuery($q);
         $db->query();
         $db = JFactory::getDBO();
         $q = "delete from #__plugins where element = 'opctracking' limit 5";
         $db->setQuery($q);
         $db->query();
         $q = "drop table if exists #__vmtranslator_translations";
         $db->setQuery($q);
         $db->query();
         $q = "drop table if exists #__onepage_config";
         $db->setQuery($q);
         $db->query();
         $q = "drop table if exists #__virtuemart_plg_opctracking";
         $db->setQuery($q);
         $db->query();
         return true;
     }
 }
開發者ID:aldegtyarev,項目名稱:stelsvelo,代碼行數:63,代碼來源:install.onepage.php


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