diff --git a/CHANGELOG.md b/CHANGELOG.md index ba75b505183a743f8ea771f8e80da6248840486c..7086cb2d77e4b269412f5b0aed64cd6ee2004363 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file. #### Fixed - Fixed the style of Added,Changed,Fixed,Removed,... +#### Changed +- Removed warning template - it is no longer needed here because it was moved to module perun + ## [v2.3.0] #### Added - Added file phpcs.xml diff --git a/config-templates/config-warning.php b/config-templates/config-warning.php deleted file mode 100644 index 2a3cd627f40cec294e2638ba95a140ee0d7d455e..0000000000000000000000000000000000000000 --- a/config-templates/config-warning.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -/** - * This config template is able to show a warning to a user. - */ -$config = array( - - /** - * When true, the config file is switched on. - */ - 'isOn' => true, - - /** - * When true, user is able to continue. - */ - 'userCanContinue' => true, - - /** - * Title of the warning. It is possible to use HTML. - */ - 'title' => '<b> Title of the warning </b>', - - /** - * Text of the warning. It is possible to use HTML. - */ - 'text' => '<p> Due to maintenance it won\'t be possible to access our service from ' . - '<b>1.1.2018 2:00</b> to <b>1.1.2018 4:00</b> </p>', -);