當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Application_Model_User::getUserById方法代碼示例

本文整理匯總了PHP中Application_Model_User::getUserById方法的典型用法代碼示例。如果您正苦於以下問題:PHP Application_Model_User::getUserById方法的具體用法?PHP Application_Model_User::getUserById怎麽用?PHP Application_Model_User::getUserById使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Application_Model_User的用法示例。


在下文中一共展示了Application_Model_User::getUserById方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: displayAction

 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'];
         }
     }
 }
開發者ID:RanaRizk,項目名稱:RNR,代碼行數:37,代碼來源:ThreadController.php

示例2: editAction

 public function editAction()
 {
     $storage = new Zend_Auth_Storage_Session();
     $data = $storage->read();
     if (!$data) {
         $this->_redirect('auth/login');
     }
     $form = new Application_Form_Registration();
     $this->view->form = $form;
     $id = $this->getRequest()->getParam('id');
     $model = new Application_Model_User();
     $form_data = $model->getUserById($id)->toArray();
     $form->populate($form_data[0]);
     if ($this->getRequest()->isPost()) {
         if ($form->isValid($this->getRequest()->getParams())) {
             $data_to_edit = $form->getValues();
             $user = new Application_Model_User();
             unset($data_to_edit['confirmPassword']);
             $edit = $user->editUser($this->getRequest()->getParam('id'), $data_to_edit);
             $this->redirect('auth/login');
         }
     }
 }
開發者ID:nguyenkiet,項目名稱:cafeteria,代碼行數:23,代碼來源:AuthController.php

示例3: editAction

 public function editAction()
 {
     $id = $this->_request->getParam('id');
     $this->view->action = 'edit';
     if (!empty($id)) {
         $user_model = new Application_Model_User();
         $userinfo = $user_model->getUserById($id);
         $this->view->user = $userinfo[0];
     }
     if ($this->_request->isPost()) {
         $user_data = $this->_request->getParams();
         $user_model = new Application_Model_User();
         $user_model->editUser($user_data);
     }
     $this->render('add');
 }
開發者ID:AmeraHelmi,項目名稱:Blog_php,代碼行數:16,代碼來源:UsersController.php

示例4: displayAction

 public function displayAction()
 {
     $id = $this->_request->getParam("id");
     if ($id != NULL) {
         $user_model = new Application_Model_User();
         $user = $user_model->getUserById($id);
         if (count($user) != 0) {
             $this->view->user = $user[0];
         }
     }
 }
開發者ID:ranahedia,項目名稱:RNR,代碼行數:11,代碼來源:UserController.php


注:本文中的Application_Model_User::getUserById方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。