762 Posts in 312 Topics by 291 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 253 Views |
-
Widgets on a Page

5 February 2013 at 1:55am Last edited: 5 February 2013 1:58am
How can i tell if a Page has 'any' widgets?
If a page has a widget the page will need a sidebar.
page.php
public static $has_one = array(
"MyWidgets" => "WidgetArea"
);Layout >Page.ss
<% if MyWidgets %>
<!-- Widgets -->
$MyWidgets
<!-- endWidgets -->
<% else %>
<!-- NO Widgets -->
$MyWidgets<% end_if %>
result
On pages without widgets, no widgets show up as expected ...however the "if MyWidgets" isn't actually working! as the comment <!-- Widgets --> Always get rendered.maybe i need a fuction on Page.phpto do some kind of check.
i want to do something like
if widges show a menu <span class="span3"> ..etc -
Re: Widgets on a Page

5 February 2013 at 2:42am Last edited: 5 February 2013 2:42am
Page_Controller ...
//check if this page has widgets assigned to it!
public function WidgetCheck() {
$widgetid = $this->MyWidgetsID;
$widgetdata = Widget::get()->filter(array('ParentID' => $widgetid));
return $widgetdata;
}
this works
| 253 Views | ||
|
Page:
1
|
Go to Top |

