PHP code example of moritzebeling / kirby-maintenance
1. Go to this page and download the library: Download moritzebeling/kirby-maintenance library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
moritzebeling / kirby-maintenance example snippets
// site/config.php
return [
// one line switch
'maintenance' => true,
// more detailed configuration
'moritzebeling.kirby-maintenance' => [
'ignore' => [],
'css' => false,
'text' => 'This website is currently under maintenance and will be back online soon.',
]
];