@nothing4me : I get no permission error in that url, I guess it is deleted.
Quote:
Logician this mod is Super Beauts... {1} Question??? .......>>>3.7 ???<<<
|
@Deepdog009 : Yes. Please read first post of the thread.
Quote:
I was trying to use the php include portion of a page and use define.
Code:
define(THIS_SCRIPT_WEBTEMPLATES,"My Page");
but I can't get it to be defined.
|
@markp_2000 : WT pages are already defined in view.php as:
define('THIS_SCRIPT', 'view');
So to make checks if you are in WT, you can use template conditionals like:
<if condition="THIS_SCRIPT == view">
we are in wt
</if>
and php conditionals like:
if (THIS_SCRIPT == view)
{
//we are in wt
}