Merge "Set correct default date format for ce"
[lhc/web/wiklou.git] / includes / actions / RenderAction.php
index 80af79c..16e407f 100644 (file)
  * @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();
-
        }
-
 }