Log in

View Full Version : Template Tags?


php4ever
03-30-2007, 12:18 PM
What exactly are these three template tags for? And, how important is the placement of these in the template header and footer?

$spacer_open
$_phpinclude_output
$spacer_close

calorie
03-30-2007, 12:58 PM
Both $spacer_open and $spacer_close are used to space contents within a page:

$spacer_open contains the content of the spacer_open template by default
$spacer_close contains the content of the spacer_close template by default
$_phpinclude_output may be used by mods but contains nothing by default

php4ever
03-30-2007, 01:18 PM
Thank you calorie