Now browser notifications are disabled by default. Issue #156.
This commit is contained in:
parent
ddc5cd6a25
commit
84b2fefd19
6 changed files with 50 additions and 25 deletions
|
|
@ -258,13 +258,16 @@ class InstallCommand extends Command
|
|||
'rotate' => false,
|
||||
'max_files' => 0,
|
||||
],
|
||||
'notifications' => [
|
||||
'enabled' => false,
|
||||
],
|
||||
'email_settings' => [
|
||||
'from_address' => 'PHP Censor <no-reply@php-censor.local>',
|
||||
'smtp_address' => null,
|
||||
'smtp_port' => null,
|
||||
'smtp_username' => null,
|
||||
'smtp_password' => null,
|
||||
'smtp_encryption' => false,
|
||||
'from_address' => 'PHP Censor <no-reply@php-censor.local>',
|
||||
'smtp_address' => null,
|
||||
'smtp_port' => null,
|
||||
'smtp_username' => null,
|
||||
'smtp_password' => null,
|
||||
'smtp_encryption' => false,
|
||||
],
|
||||
'ssh' => [
|
||||
'strength' => 2048,
|
||||
|
|
|
|||
|
|
@ -2,8 +2,20 @@
|
|||
|
||||
use PHPCensor\Helper\Lang;
|
||||
|
||||
/**
|
||||
* @var \PHPCensor\Model\User $user
|
||||
*/
|
||||
$user = $this->getUser();
|
||||
|
||||
/**
|
||||
* @var string $title
|
||||
* @var string $subtitle
|
||||
* @var string $version
|
||||
* @var string $content
|
||||
* @var string $skin
|
||||
* @var bool $notifications
|
||||
*/
|
||||
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
|
@ -35,7 +47,8 @@ $user = $this->getUser();
|
|||
<script src="<?= APP_URL; ?>assets/vendor/notifyjs/dist/notify.js" type="text/javascript"></script>
|
||||
|
||||
<script>
|
||||
var APP_URL = '<?= APP_URL; ?>';
|
||||
var APP_URL = '<?= APP_URL; ?>';
|
||||
var NOTIFICATIONS = <?= ($notifications ? 'true' : 'false'); ?>;
|
||||
var LANGUAGE = '<?= Lang::getLanguage(); ?>';
|
||||
|
||||
<?php if (defined('JSON_UNESCAPED_UNICODE')): ?>
|
||||
|
|
|
|||
|
|
@ -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');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue