本文整理汇总了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)));
}