3212 Posts in 847 Topics by 809 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1004 Views |
-
Check environment type within within templates

27 July 2010 at 8:44am Last edited: 27 July 2010 8:44am
I included a tracking script at the bottom of my Page.ss, like this:
<% if CurrentMember %>
<% else %>
<% if URLSegment != Security %>
<% include TrackingCode %>
<% end_if %>
<% end_if %>To avoid the tracking of editors I wrapped it up with the login check. Everything works great, but when I'm on my local dev copy the script gets included again, tracking me....
So my question is if there is a way to check the environment type within the template, or do I have to put everything into the Page_Controller?
-
Re: Check environment type within within templates

27 July 2010 at 11:37am
I don't believe any template controls are built in for it. The function I use is trivially simple
function IsLive() {
return Director::isLive();
}Then in the template <% if IsLive %>
-
Re: Check environment type within within templates

27 July 2010 at 7:55pm
This is brilliant, thank you!
| 1004 Views | ||
|
Page:
1
|
Go to Top |

