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
@ -103,6 +103,17 @@ class Widget extends DataObject {
|
|||||||
return $this->renderWith("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
|
* Renders the widget content in a custom template with the same name as the
|
||||||
* current class. This should be the main point of output customization.
|
* current class. This should be the main point of output customization.
|
||||||
|
Loading…
Reference in New Issue
Block a user