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