本文整理汇总了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();
}
示例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;
}