本文整理汇总了PHP中Craft::enableMaintenanceMode方法的典型用法代码示例。如果您正苦于以下问题:PHP Craft::enableMaintenanceMode方法的具体用法?PHP Craft::enableMaintenanceMode怎么用?PHP Craft::enableMaintenanceMode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Craft
的用法示例。
在下文中一共展示了Craft::enableMaintenanceMode方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: updateFiles
/**
* @param $uid
* @throws Exception
*/
public function updateFiles($uid)
{
$unzipFolder = UpdateHelper::getUnzipFolderFromUID($uid);
// Put the site into maintenance mode.
Craft::log('Putting the site into maintenance mode.', LogLevel::Info, true);
Craft::enableMaintenanceMode();
// Update the files.
Craft::log('Performing file update.', LogLevel::Info, true);
if (!UpdateHelper::doFileUpdate(UpdateHelper::getManifestData($unzipFolder), $unzipFolder)) {
Craft::log('Taking the site out of maintenance mode.', LogLevel::Info, true);
Craft::disableMaintenanceMode();
throw new Exception(Craft::t('There was a problem updating your files.'));
}
}