コード例 #1
0
ファイル: WallController.php プロジェクト: omusico/logica
 /**
  * add new wall
  * @author EL GUENNUNI Sohaib s.elguennuni@gmail.com
  * @param <empty>
  * @return <empty>
  */
 public function addpostAction()
 {
     $this->title = 'add wall';
     if ($this->getRequest()->isPost()) {
         $wall_text = App_Utilities::_f($this->getRequest()->getPost('wall_comment'), true);
         $this->_tagSocialModel->AddTagWalls($wall_text);
         $this->_forward('index');
     }
 }