2011-04-24 23:13:44 -04:00
|
|
|
|
<?php
|
|
|
|
|
// -------------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// $Id$
|
|
|
|
|
//
|
|
|
|
|
// FILENAME : compile_template.php
|
|
|
|
|
// STARTED : Sun Apr 24, 2011
|
|
|
|
|
// COPYRIGHT : <20> 2011 phpBB Group
|
|
|
|
|
// WWW : http://www.phpbb.com/
|
|
|
|
|
// LICENCE : GPL vs2.0 [ see /docs/COPYING ]
|
|
|
|
|
//
|
|
|
|
|
// -------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
define('IN_PHPBB', 1);
|
|
|
|
|
define('ANONYMOUS', 1);
|
|
|
|
|
$phpEx = substr(strrchr(__FILE__, '.'), 1);
|
|
|
|
|
$phpbb_root_path = './../';
|
|
|
|
|
|
|
|
|
|
include($phpbb_root_path . 'includes/template_compile.'.$phpEx);
|
|
|
|
|
|
|
|
|
|
$file = $argv[1];
|
|
|
|
|
|
2011-11-27 00:17:22 -05:00
|
|
|
|
$compile = new phpbb_template_compile(false);
|
2011-05-01 04:00:24 -04:00
|
|
|
|
echo $compile->compile_file($file);
|