mirror of
https://github.com/silverstripe/silverstripe-widgets
synced 2024-10-22 17:05:54 +02:00
Merge pull request #62 from jedateach/fortemplate
Added forTemplate function on Widget
This commit is contained in:
commit
8e27c175a9
@ -102,6 +102,17 @@ class Widget extends DataObject {
|
||||
public function WidgetHolder() {
|
||||
return $this->renderWith("WidgetHolder");
|
||||
}
|
||||
|
||||
/**
|
||||
* Default way to render widget in templates.
|
||||
* @return string HTML
|
||||
*/
|
||||
public function forTemplate($holder = true){
|
||||
if($holder){
|
||||
return $this->WidgetHolder();
|
||||
}
|
||||
return $this->Content();
|
||||
}
|
||||
|
||||
/**
|
||||
* Renders the widget content in a custom template with the same name as the
|
||||
|
Loading…
Reference in New Issue
Block a user