added controller to render markdown documentation #129

This commit is contained in:
Kevin Papst
2018-02-07 15:07:53 +01:00
parent 2e60e14132
commit 29699572bd
25 changed files with 658 additions and 140 deletions

25
src/Constants.php Normal file
View File

@@ -0,0 +1,25 @@
<?php
/*
* This file is part of the Kimai time-tracking app.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App;
/**
* Some very global constants for Kimai.
*/
class Constants
{
/**
* Currently only used for informational purpose in the footer
*/
const VERSION = '2.0 dev';
/**
* Used in multiple views
*/
const GITHUB = 'https://github.com/kevinpapst/kimai2/';
}