Now browser notifications are disabled by default. Issue #156.

This commit is contained in:
Dmitry Khomutov 2018-04-29 12:08:44 +07:00
commit 84b2fefd19
No known key found for this signature in database
GPG key ID: EC19426474B37AAC
6 changed files with 50 additions and 25 deletions

View file

@ -48,9 +48,12 @@ abstract class WebController extends Controller
if (!empty($this->layoutName)) {
$this->layout = new View($this->layoutName);
$this->layout->title = 'PHP Censor';
$this->layout->breadcrumb = [];
$this->layout->version = trim(file_get_contents(ROOT_DIR . 'VERSION.md'));
$notifications = (bool)Config::getInstance()->get('php-censor.notifications.enabled', false);
$this->layout->title = 'PHP Censor';
$this->layout->breadcrumb = [];
$this->layout->version = trim(file_get_contents(ROOT_DIR . 'VERSION.md'));
$this->layout->notifications = $notifications;
$groups = [];
$groupStore = Factory::getStore('ProjectGroup');