3214 Posts in 848 Topics by 810 members
| Go to End | ||
| Author | Topic: | 2452 Views |
-
Re: include a own sidebar in just one page section

23 February 2010 at 8:59am
NARKOZ you can try
<% if InSection(forum) || InSection(blog) %>
If that doesn't work you'll need to move the logic to your PHP page controller.
-
Re: include a own sidebar in just one page section

23 February 2010 at 9:24am
to move the logic to your PHP page controller
Can you give me any documentation about this?
-
Re: include a own sidebar in just one page section

23 February 2010 at 9:34am
Well its just writing pretty much the same thing, just in PHP rather than the template and passing a simple boolean answer.
In your mysite/code/Page.php, in either your controller or the model (both should work)
function HasSidebar() {
return ($this->InSection('blog') || $this->InSection('forum'));
}Then in the template you use <% if HasSidebar %>....
| 2452 Views | ||
| Go to Top |


