Added PHP Censor logo and version to console and web interfaces.

This commit is contained in:
Dmitry Khomutov 2018-01-27 16:42:20 +07:00
commit beb8c818c3
No known key found for this signature in database
GPG key ID: EC19426474B37AAC
3 changed files with 56 additions and 17 deletions

View file

@ -119,6 +119,7 @@ class Application extends b8\Application
$controller->layout = new View('layout');
$controller->layout->title = 'PHP Censor';
$controller->layout->breadcrumb = [];
$controller->layout->version = trim(file_get_contents(ROOT_DIR . 'VERSION.md'));
return $controller;
}