本文整理匯總了PHP中Submission::create_submission方法的典型用法代碼示例。如果您正苦於以下問題:PHP Submission::create_submission方法的具體用法?PHP Submission::create_submission怎麽用?PHP Submission::create_submission使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Submission
的用法示例。
在下文中一共展示了Submission::create_submission方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: get_results
/**
* This function is responsible for displaying the results page.
*
* It first sends data to the model for insertion into database.
* If inserted correctly, displays the results page.
*/
public function get_results()
{
if (!($id = Route::input('id'))) {
Log::error('Unable to display results. Route ID not found.');
return Redirect::to('error');
}
if (!($answers = Session::get('answers'))) {
Log::error('Unable to display results. Unable to retreive answers from session.');
return Redirect::to('error');
}
if (!($restart = route('home'))) {
Log::error('Unable to assign the restart button to a route.');
return Redirect::to('error');
}
$responses = self::clean_results($answers);
$submission = self::prepare_submission($id, $answers);
if (Submission::create_submission($submission)) {
return View::make('results', array('heading' => 'Thank you! Your outcome is provided below', 'outcome' => self::$outcomes[$id], 'responses' => $responses, 'restart' => $restart));
}
Log::error('Unable to create submission. Database insertion failed');
return Redirect::to('error');
}