本文整理汇总了PHP中app\Board::getThread方法的典型用法代码示例。如果您正苦于以下问题:PHP Board::getThread方法的具体用法?PHP Board::getThread怎么用?PHP Board::getThread使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\Board
的用法示例。
在下文中一共展示了Board::getThread方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getThread
/**
* Renders a thread.
*
* @var \App\Http\Requests\Request $request
* @var Board $board
* @var integer|null $thread
* @return Response
*/
public function getThread(Request $request, Board $board, $thread = null)
{
if (is_null($thread)) {
return redirect($board->board_uri);
}
// Pull the thread.
$thread = $board->getThread($thread);
if (!$thread) {
return abort(404);
}
if ($thread->reply_to) {
return redirect("{$board->board_uri}/thread/{$thread->op->board_id}");
}
return $this->view(static::VIEW_THREAD, ['board' => $board, 'posts' => [$thread], 'reply_to' => $thread->board_id]);
}
示例2: getThread
/**
* Returns a thread and its replies to the client.
*
* @var Board $board
* @var integer|null $thread
* @return Response
*/
public function getThread(Request $request, Board $board, $thread)
{
if (is_null($thread)) {
return abort(404);
}
$input = $request->only('updatesOnly', 'updatedSince');
if (isset($input['updatesOnly'])) {
$updatedSince = Carbon::createFromTimestamp($request->input('updatedSince', 0));
return Post::where('posts.board_uri', $board->board_uri)->withEverything()->where(function ($query) use($thread) {
$query->where('posts.reply_to_board_id', $thread);
$query->orWhere('posts.board_id', $thread);
})->where(function ($query) use($updatedSince) {
$query->where('posts.updated_at', '>=', $updatedSince);
$query->orWhere('posts.deleted_at', '>=', $updatedSince);
})->withTrashed()->orderBy('posts.created_at', 'asc')->get();
} else {
// Pull the thread.
$thread = $board->getThread($thread);
if (!$thread) {
return abort(404);
}
}
return $thread;
}