GetSimple Support Forum

Full Version: Find out if the backend is active
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i18n_specialpages uses

PHP Code:
if (basename($_SERVER['PHP_SELF']) && basename($_SERVER['PHP_SELF']) != 'index.php') { 

to find out if GS is in the backend... it works, but this looks more like a bad hack than like the best solution.

May i suggest that the backend entry points define a GSBACKEND=true and the front end defines GSBACKEND=false?

ciao
a.l.e
In 3.1+ you can use is_frontend()

This was broken in previous versions.
yep, "is_frontend()" is what i was looking for!