本文整理汇总了PHP中app\models\Log::logModerateForumPost方法的典型用法代码示例。如果您正苦于以下问题:PHP Log::logModerateForumPost方法的具体用法?PHP Log::logModerateForumPost怎么用?PHP Log::logModerateForumPost使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\models\Log
的用法示例。
在下文中一共展示了Log::logModerateForumPost方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: removePost
public function removePost($post, $user = null)
{
DB::transaction(function () use($post, $user) {
$post->delete();
if ($this->posts()->exists() === true) {
$this->refreshCache();
} else {
$this->deleteWithCover();
}
if ($this->forum !== null) {
$this->forum->refreshCache();
}
if ($post->user !== null) {
$post->user->refreshForumCache();
}
if ($user !== null && $user->user_id !== $post->poster_id && $user->isAdmin() === true) {
Log::logModerateForumPost('LOG_DELETE_POST', $post);
}
});
return true;
}
示例2: edit
public function edit($body, $user)
{
if ($body === $this->bodyRaw) {
return true;
}
$updates = ['post_text' => $body];
if ($user->user_id === $this->poster_id) {
$updates = array_merge($updates, ['post_edit_time' => Carbon::now(), 'post_edit_count' => DB::raw('post_edit_count + 1'), 'post_edit_user' => $user->user_id]);
} else {
Log::logModerateForumPost('LOG_POST_EDITED', $this);
}
return $this->update($updates);
}