Skip to content
Snippets Groups Projects
Commit 436696b9 authored by Dominik Baránek's avatar Dominik Baránek
Browse files

Removed warning template

parent 0a55c6a7
No related branches found
No related tags found
1 merge request!12Removed warning template
...@@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file. ...@@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
#### Fixed #### Fixed
- Fixed the style of Added,Changed,Fixed,Removed,... - 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] ## [v2.3.0]
#### Added #### Added
- Added file phpcs.xml - Added file phpcs.xml
......
<?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>',
);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment