Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

Archive /

Our old forums are still available as a read-only archive.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo

Page Titles


Go to End


18 Posts   7980 Views

Avatar
Nathan Cox

Community Member, 99 Posts

20 September 2007 at 10:09am

One option would be to put a SiteName() method into Page_Controller:

function SiteName() {
    global $SiteName;
    return $SiteName;
}

It does take a but more code, though :)

Avatar
Reflektera

49 Posts

20 September 2007 at 10:26am

Thanks, I'm fine with that...

Go to Top