create application Utils
This commit is contained in:
parent
f56824655b
commit
2aca3f6515
1 changed files with 32 additions and 0 deletions
32
app/Utils.inc
Normal file
32
app/Utils.inc
Normal file
|
|
@ -0,0 +1,32 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The Legend of Z
|
||||||
|
*
|
||||||
|
* @author Oliver Hanraths <oliver.hanraths@uni-duesseldorf.de>
|
||||||
|
* @copyright 2014 Heinrich-Heine-Universität Düsseldorf
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.html
|
||||||
|
* @link https://bitbucket.org/coderkun/the-legend-of-z
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace hhu\z;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class for implementing utility methods.
|
||||||
|
*
|
||||||
|
* @author Oliver Hanraths <oliver.hanraths@uni-duesseldorf.de>
|
||||||
|
*/
|
||||||
|
class Utils
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Format for printing the date
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
const DATEFORMAT = 'm.d.Y';
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue