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


PHP Maintenance::GetErrorMessage方法代碼示例

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


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

示例1: TidyLibrary

 /**
  * Tidies up the library
  */
 public function TidyLibrary()
 {
     $response = new ResponseManager();
     $tidyOldRevisions = Kit::GetParam('tidyOldRevisions', _POST, _CHECKBOX) == 1;
     $cleanUnusedFiles = Kit::GetParam('cleanUnusedFiles', _POST, _CHECKBOX) == 1;
     if (Config::GetSetting('SETTING_LIBRARY_TIDY_ENABLED') != 1) {
         trigger_error(__('Sorry this function is disabled.'), E_USER_ERROR);
     }
     $maintenance = new Maintenance();
     if (!$maintenance->TidyLibrary($tidyOldRevisions, $cleanUnusedFiles)) {
         trigger_error($maintenance->GetErrorMessage(), E_USER_ERROR);
     }
     $response->SetFormSubmitResponse(__('Library Tidy Complete'));
     $response->Respond();
 }
開發者ID:fignew,項目名稱:xibo-cms,代碼行數:18,代碼來源:admin.class.php

示例2: RestoreDatabase

 /**
  * Restore the Database
  */
 public function RestoreDatabase()
 {
     $db =& $this->db;
     if (Config::GetSetting('SETTING_IMPORT_ENABLED') != 'On') {
         trigger_error(__('Sorry this function is disabled.'), E_USER_ERROR);
     }
     include 'install/header.inc';
     echo '<div class="info">';
     // Expect a file upload
     // Check we got a valid file
     if (isset($_FILES['dumpFile']) && is_uploaded_file($_FILES['dumpFile']['tmp_name']) && $_FILES['dumpFile']['error'] == 0) {
         echo 'Restoring Database</br>';
         Debug::LogEntry('audit', 'Valid Upload', 'Backup', 'RestoreDatabase');
         // Directory location
         $fileName = Kit::ValidateParam($_FILES['dumpFile']['tmp_name'], _STRING);
         if (is_uploaded_file($fileName)) {
             // Move the uploaded file to a temporary location in the library
             $destination = tempnam(Config::GetSetting('LIBRARY_LOCATION'), 'dmp');
             move_uploaded_file($fileName, $destination);
             Kit::ClassLoader('maintenance');
             $maintenance = new Maintenance($this->db);
             // Use the maintenance class to restore the database
             if (!$maintenance->RestoreDatabase($destination)) {
                 trigger_error($maintenance->GetErrorMessage(), E_USER_ERROR);
             }
             unlink($destination);
         } else {
             trigger_error(__('Not a valid uploaded file'), E_USER_ERROR);
         }
     } else {
         trigger_error(__('Unable to upload file'), E_USER_ERROR);
     }
     echo '</div>';
     echo '<a href="index.php?p=admin">' . __('Database Restored. Click here to continue.') . '</a>';
     include 'install/footer.inc';
     die;
 }
開發者ID:abbeet,項目名稱:server39,代碼行數:40,代碼來源:admin.class.php


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