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


PHP CommentModel::loadByItem方法代碼示例

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


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

示例1: CommentList

 /**
  * 
  */
 public function CommentList($item_id, $page_number, $page_size, $cur_controller, $cur_action, $item_name, $params, $allowComment = 1)
 {
     $userModel = new UserModel();
     $info = array();
     if ((int) $page_size <= 0) {
         $page_size = self::DEFAULT_COMMENT_PER_PAGE;
     }
     $request = Project::getRequest();
     $user = Project::getUser()->getDbUser();
     $isAdmin = $user->user_type_id == 1 ? true : false;
     $user_id = (int) Project::getUser()->getDbUser()->id;
     $info['cur_controller'] = $cur_controller;
     $info['cur_action'] = $cur_action;
     $info['item_name'] = $item_name;
     $info['add_comment_element_id'] = $item_id;
     $info['add_comment_id'] = 0;
     $info['isAdmin'] = $isAdmin;
     $info['user_id'] = $user_id;
     $info['default_avatar'] = $userModel->getUserAvatar($user_id);
     $requested_user_id = (int) Project::getUser()->getShowedUser()->id;
     $model = new CommentModel($item_name . '_comment', $item_name . '_id', 0);
     $pager = new DbPager($page_number, $page_size);
     $model->setPager($pager);
     $list = $model->loadByItem($item_id);
     foreach ($list as &$item) {
         if ($user_id > 0 && ($user_id === $requested_user_id || (int) $item['user_id'] === $user_id || $isAdmin)) {
             $item['del_link'] = $request->createUrl("BaseComment", "DeleteComment", array($item_id, $item['id'], $item_name));
         } else {
             $item['del_link'] = false;
         }
     }
     $info['add_comment_url'] = $request->createUrl('BaseComment', 'AddComment');
     $info['change_comment_url'] = $request->createUrl('BaseComment', 'EditComment');
     $info['comment_list'] = $list;
     $pager_view = new SitePagerView();
     $info['comment_list_pager'] = $pager_view->show2($model->getPager(), $cur_controller, $cur_action, $params);
     $info['user_moods'] = $userModel->getAllUserMoods($user_id);
     $info['user_avatars'] = $userModel->getAllUserAvatars($user_id);
     $info['allowComment'] = $allowComment;
     $this->_view->CommentList($info);
     return $this->_view->parse();
 }
開發者ID:amanai,項目名稱:next24,代碼行數:45,代碼來源:BaseCommentController.php


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