当前位置: 首页>>代码示例>>PHP>>正文


PHP CommentModel::editComment方法代码示例

本文整理汇总了PHP中CommentModel::editComment方法的典型用法代码示例。如果您正苦于以下问题:PHP CommentModel::editComment方法的具体用法?PHP CommentModel::editComment怎么用?PHP CommentModel::editComment使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在CommentModel的用法示例。


在下文中一共展示了CommentModel::editComment方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: EditCommentAction

 public function EditCommentAction()
 {
     $request = Project::getRequest();
     $user = Project::getUser()->getDbUser();
     $isAdmin = $user->user_type_id == 1 ? true : false;
     $item_name = $request->item_name;
     switch ($item_name) {
         case 'article':
             $item_controller = 'Article';
             $item_action = 'ArticleView';
             break;
         case 'questions':
             $item_controller = 'QuestionAnswer';
             $item_action = 'ViewQuestion';
             break;
         case 'photo':
             $item_controller = 'Photo';
             $item_action = 'View';
             break;
         case 'bookmarks':
             $item_controller = 'Bookmarks';
             $item_action = 'BookmarksView';
             break;
         case 'social':
             $item_controller = 'Social';
             $item_action = 'SocialView';
             break;
         case 'blog':
             $item_controller = 'Blog';
             $item_action = 'Comments';
             break;
     }
     $comment_model = new CommentModel($item_name . '_comment', $item_name . '_id', $request->comment_id);
     if ($request->change_comment && ($isAdmin || $comment_model->user_id == $user->id)) {
         $warning_id = 0;
         if ($request->warning_text) {
             $warningModel = new WarningModel();
             $warning_id = $warningModel->add($comment_model->user_id, $request->warning_text);
         }
         $comment_model->editComment($comment_model->user_id, $warning_id, $request->editCommentArea, (int) $isAdmin);
     }
     Project::getResponse()->redirect($request->createUrl($item_controller, $item_action, array($request->element_id)));
 }
开发者ID:amanai,项目名称:next24,代码行数:43,代码来源:BaseCommentController.php


注:本文中的CommentModel::editComment方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。