ok say I defined a template in global.php with something like
eval('$mytemplate = "' . fetch_template('mytemplate') . '";');
as a global template
now lets say somewhere I want to use
in forumhome and some other specific templates
<if condition="$bbuserinfo['usergroupid'] != 6">
$mytemplate
</if>
now in my header I want something like
<if conditon="templatepresent == mytemplate">
some other content assoiated with mytemplate but does not reside within it
</if>
I want to know if thats possible.
|