コード例 #1
0
ファイル: newevent.php プロジェクト: phpsource/gnu-social
 /**
  * Show the event form
  *
  * @return void
  */
 function showContent()
 {
     if (!empty($this->error)) {
         $this->element('p', 'error', $this->error);
     }
     $form = new EventForm($this);
     $form->show();
     return;
 }