summaryrefslogtreecommitdiff
path: root/includes/actions/RenderAction.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/actions/RenderAction.php')
-rw-r--r--includes/actions/RenderAction.php11
1 files changed, 9 insertions, 2 deletions
diff --git a/includes/actions/RenderAction.php b/includes/actions/RenderAction.php
index 80af79cc..3d244fb3 100644
--- a/includes/actions/RenderAction.php
+++ b/includes/actions/RenderAction.php
@@ -23,17 +23,24 @@
* @author Timo Tijhof
*/
+/**
+ * Handle action=render
+ *
+ * This is a wrapper that will call Article::render().
+ *
+ * @ingroup Actions
+ */
class RenderAction extends FormlessAction {
public function getName() {
return 'render';
}
- public function onView(){
+ public function onView() {
return null;
}
- public function show(){
+ public function show() {
$this->page->render();