2016-05-08 16:00:14 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of Cachet.
|
|
|
|
*
|
|
|
|
* (c) Alt Three Services Limited
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
return [
|
2016-06-01 11:42:25 +01:00
|
|
|
|
2016-05-08 16:00:14 +01:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Dashboard Login Link
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Whether to show the dashboard link in the footer by default.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'dashboard_login_link' => true,
|
2016-05-25 21:20:24 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
2016-05-26 11:35:00 +01:00
|
|
|
| Enable subscribers
|
2016-05-25 21:20:24 +01:00
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Whether to allow people to subscribe to the status page.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'enable_subscribers' => true,
|
2016-05-26 11:35:00 +01:00
|
|
|
|
2018-01-21 12:22:14 +01:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Suppress notifications while in maintenance
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
2018-01-21 14:32:14 +01:00
|
|
|
| Whether to suppress notification channels if an issue is created during
|
2018-01-21 12:22:14 +01:00
|
|
|
| planned or in-progress maintenance periods.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'suppress_notifications_in_maintenance' => true,
|
|
|
|
|
2016-05-26 11:35:00 +01:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Automatic Localization
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Whether to automatically localize the status to the visitors default
|
|
|
|
| browser language settings.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'automatic_localization' => false,
|
2016-06-01 08:04:16 +01:00
|
|
|
|
2016-06-01 11:42:25 +01:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Show Support for Cachet
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Whether to show the "Powered by Cachet" text in the footer.
|
|
|
|
|
|
|
|
|
*/
|
2016-06-01 08:04:16 +01:00
|
|
|
|
2016-06-01 11:50:24 +01:00
|
|
|
'show_support' => true,
|
2016-06-01 11:42:25 +01:00
|
|
|
|
2016-07-11 10:11:44 +01:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Enable External Dependencies
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Whether to disable third-party dependencies.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'enable_external_dependencies' => true,
|
|
|
|
|
2016-07-11 21:33:07 +01:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Show the timezone
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Whether to show the status page timezone in the footer.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'show_timezone' => false,
|
2016-07-20 16:00:27 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Skip subscriber verifications
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Whether to allow skipping of subscriber verifications.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'skip_subscriber_verification' => false,
|
2016-10-04 19:16:50 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Only disrupted days
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Whether to only show days with incidents, or each day in the timeline.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'only_disrupted_days' => false,
|
2016-05-08 16:00:14 +01:00
|
|
|
];
|