Seditio Source
Root |
./othercms/croogo-4.0.7/vendor/wyrihaximus/twig-view/src/Lib/Twig/Extension/Time.php
<?php

/**
 * This file is part of TwigView.
 *
 ** (c) 2014 Cees-Jan Kiewiet
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace WyriHaximus\TwigView\Lib\Twig\Extension;

/**
 * Class Time
 * @package WyriHaximus\TwigView\Lib\Twig\Extension
 */
class Time extends \Twig_Extension
{
   
/**
     * Get declared functions.
     *
     * @return \Twig_SimpleFunction[]
     */
   
public function getFunctions()
    {
        return [
            new \
Twig_SimpleFunction('time', function ($time = null, $timezone = null) {
                return new \
Cake\I18n\Time($time, $timezone);
            }),
            new \
Twig_SimpleFunction('timezones', 'Cake\I18n\Time::listTimezones'),
        ];
    }

   
/**
     * Get extension name.
     *
     * @return string
     */
   
public function getName()
    {
        return
'time';
    }
}