Development

/plugins/cpTwigPlugin/trunk/lib/vendor/twig/test/Twig/Tests/Fixtures/functions/constant.test

You must first sign up to be able to contribute.

root/plugins/cpTwigPlugin/trunk/lib/vendor/twig/test/Twig/Tests/Fixtures/functions/constant.test

Revision 33106, 294 bytes (checked in by coopers, 2 years ago)

added twig and twig-extensions as vendor libs

Line 
1 --TEST--
2 "constant" filter
3 --TEMPLATE--
4 {{ date|date(constant('DATE_W3C')) }}
5 --DATA--
6 $d = date_default_timezone_get();
7 date_default_timezone_set('UTC');
8 $ret = array('date' => strtotime('2005-10-15 10:00:01'));
9 date_default_timezone_set($d);
10 return $ret;
11 --EXPECT--
12 2005-10-15T10:00:01+00:00
Note: See TracBrowser for help on using the browser.