1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<?php
/*
* Spring Signage Ltd - http://www.springsignage.com
* Copyright (C) 2015 Spring Signage Ltd
* (DateFormatTwigExtension.php)
*/
namespace Xibo\Twig;
class DateFormatTwigExtension extends \Twig_Extension
{
/**
* {@inheritdoc}
*/
public function getFilters()
{
return array(
'datehms' => new \Twig_Filter_Method($this, 'dateFormat')
);
}
/**
* Formats a date
*
* @param string $date in seconds
*
* @return string formated as HH:mm:ss
*/
public function dateFormat( $date )
{
return gmdate('H:i:s', $date);
}
/**
* Returns the name of the extension.
*
* @return string The extension name
*/
public function getName()
{
return 'datehms';
}
}
|