本文整理汇总了PHP中Question::getRemainingTime方法的典型用法代码示例。如果您正苦于以下问题:PHP Question::getRemainingTime方法的具体用法?PHP Question::getRemainingTime怎么用?PHP Question::getRemainingTime使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Question
的用法示例。
在下文中一共展示了Question::getRemainingTime方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: showArchive
public function showArchive($username)
{
$user = User::whereUsername($username)->firstOrFail();
$profile = $user->profile()->first();
$title = "My Archives";
$currentQuestion = Question::getCurrentQuestion();
$remaining_time = Question::getRemainingTime($currentQuestion);
$leading = Post::getLeadingBant($currentQuestion);
$posts = $user->posts()->get();
return View::make('profile.dashboard.archive')->with(['question' => $currentQuestion, 'remaining_time' => $remaining_time, 'leading' => $leading, 'profile' => $profile, 'user' => $user, 'posts' => $posts, 'title' => $title]);
}
示例2: postOptions
public function postOptions()
{
$title = "Post";
$currentQuestion = Question::getCurrentQuestion();
$points_pct = Question::getTotalPointsPct($currentQuestion);
$remaining_time = Question::getRemainingTime($currentQuestion);
$posts = Post::getRandPosts($currentQuestion);
$leading_username = "BrewerBoy";
$leading_votes = 30;
return View::make('posts.options')->with(['question' => $currentQuestion, 'remaining_time' => $remaining_time, 'points_pct' => $points_pct, 'posts' => $posts, 'leading_username' => $leading_username, 'leading_votes' => $leading_votes, 'title' => $title]);
}
示例3: index
public function index()
{
$user = User::whereUsername(LoggedInUser::username())->firstOrFail();
$profile = $user->profile()->first();
$title = "My Settings";
$email_notifications = Profile::getEmailNotifications();
$email_user_settings = Profile::getMyEmailNotifications(Auth::id());
$currentQuestion = Question::getCurrentQuestion();
$remaining_time = Question::getRemainingTime($currentQuestion);
$leading = Post::getLeadingBant($currentQuestion);
$posts = $user->posts()->get();
return View::make('profile.dashboard.settings')->with(['question' => $currentQuestion, 'remaining_time' => $remaining_time, 'leading' => $leading, 'profile' => $profile, 'user' => $user, 'email_notifications' => $email_notifications, 'email_user_settings' => $email_user_settings, 'posts' => $posts, 'title' => $title]);
}
示例4: displayForm
private function displayForm($type)
{
$title = "Post Comment";
$currentQuestion = Question::getCurrentQuestion();
$points_pct = Question::getTotalPointsPct($currentQuestion);
$remaining_time = Question::getRemainingTime($currentQuestion);
$posts = Post::getRandPosts($currentQuestion);
if (Post::hasPost($currentQuestion)) {
return Alert::flash(Lang::get('post.exist'), 'warning');
}
$options = [$currentQuestion['left_option'] => ucfirst($currentQuestion['left_option']), $currentQuestion['right_option'] => ucfirst($currentQuestion['right_option'])];
return View::make("posts.options.{$type}")->with(['question' => $currentQuestion, 'remaining_time' => $remaining_time, 'points_pct' => $points_pct, 'posts' => $posts, 'options' => $options, 'title' => $title]);
}
示例5: adminUser
public static function adminUser($id)
{
$title = "User";
$currentQuestion = Question::getCurrentQuestion();
$remaining_time = Question::getRemainingTime($currentQuestion);
$leading = Post::getLeadingBant($currentQuestion);
$get_user = User::getUser($id);
return View::make('admin.users-show')->with(['question' => $currentQuestion, 'remaining_time' => $remaining_time, 'leading' => $leading, 'user' => $get_user, 'title' => $title]);
}