Esempio n. 1
0
 public function displayAction()
 {
     $id = $this->_request->getParam("id");
     $thread_model = new Application_Model_Thread();
     $toCategoryId = $this->_request->getParam("toCategoryId");
     if ($toCategoryId != NULL && $id != NULL) {
         $thread = $thread_model->getThreadById($toCategoryId, $id);
         if (count($thread) != 0) {
             $user_model = new Application_Model_User();
             $user = $user_model->getUserById($thread[0]['userId']);
             $this->view->user = $user[0]['userName'];
             $this->view->image = $user[0]['signature'];
             $this->view->id = $user[0]['id'];
             $emoticon_model = new Application_Model_Emoticon();
             $emoticons = $emoticon_model->listEmoticons();
             $comment_model = new Application_Model_Comment();
             $comments = $comment_model->listComments($thread[0]['id']);
             if (count($comments) != 0) {
                 $user_model = new Application_Model_User();
                 for ($i = 0; $i < count($comments); $i++) {
                     $user = $user_model->getUserById($comments[$i]['userId']);
                     $names[] = $user[0]['userName'];
                     $images[] = $user[0]['profilePicture'];
                     $ids[] = $user[0]['id'];
                 }
                 $this->view->comments = $comments;
                 $this->view->names = $names;
                 $this->view->images = $images;
                 $this->view->ids = $ids;
                 $this->view->emoticons = $emoticons;
             }
             $this->view->thread = $thread[0];
             $this->view->toCategoryId = $toCategoryId;
             //                $this->view->lock = $thread[0]['lock'];
         }
     }
 }