* @copyright Copyright © 2005, 2006 Ævar Arnfjörð Bjarmason * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later */ $wgHooks['ParserGetVariableValueTs'][] = 'wfParserTimeSetup'; function wfParserTimeSetup( &$parser, &$ts ) { $ts = 123; //$ perl -le 'print scalar localtime 123' ==> Thu Jan 1 00:02:03 1970 return true; }