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.

General Questions /

General questions about getting started with SilverStripe that don't fit in any of the categories above.

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

How can I test the value of $ within a controller?


Go to End


2 Posts   947 Views

Avatar
DeklinKelly

Community Member, 197 Posts

4 July 2009 at 3:10am

How can I test the value of $Heading within a controller?

From Special.ss

<h1>$Heading</h1>

From Special.php

class Special_Controller extends Page_Controller {
	function special () { 
	 if ($Heading=='Hello')
	}
}

Avatar
ChrisBryer

Community Member, 95 Posts

8 July 2009 at 2:25am

this should work:

function special () {
     if ($this->Heading=='Hello') 
}