Example #1
0
 private function getPageCommentsForm(GWF_Page $page)
 {
     if (isset($_POST['reply']) || !$page->isOptionEnabled(GWF_Page::COMMENTS)) {
         return '';
     }
     $reply = $this->mod_c->getMethod('Reply');
     $reply instanceof Comments_Reply;
     $href = $this->getMethodHREF('&pageid=' . $page->getID());
     return $reply->templateReply($href);
 }