本文整理匯總了PHP中app\models\Profile::isFresh方法的典型用法代碼示例。如果您正苦於以下問題:PHP Profile::isFresh方法的具體用法?PHP Profile::isFresh怎麽用?PHP Profile::isFresh使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類app\models\Profile
的用法示例。
在下文中一共展示了Profile::isFresh方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: boot
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
view()->composer('app', function ($view) {
// 是否新生
if ($is_fresh = Fresh::whereXh(Auth::user()->xh)->exists()) {
$user = Fresh::find(Auth::user()->xh);
}
// 是否在校生
if ($is_student = Profile::whereXh(Auth::user()->xh)->whereXjzt(config('constants.school.student'))->exists()) {
$user = Profile::find(Auth::user()->xh);
}
// 是否新入校未足一年的學生
$is_newer = Profile::isFresh(Auth::user())->exists();
// 是否允許選課
$allowed_select = Setting::find('XK_KG')->value;
// 是否允許選通識素質課
$allowed_general = Setting::find('XK_TS')->value;
// 是否允許選其他課程
$allowed_others = Setting::find('XK_QT')->value;
// 是否允許公體選課
$allowed_pubsport = Setting::find('XK_GT')->value;
$view->withIsFresh($is_fresh)->withIsStudent($is_student)->withUser($user)->withIsNewer($is_newer)->withAllowedSelect($allowed_select)->withAllowedGeneral($allowed_general)->withAllowedOthers($allowed_others)->withAllowedPubsport($allowed_pubsport);
});
}
示例2: update
/**
* 學生考試報名
* @author FuRongxin
* @date 2016-02-22
* @version 2.0
* @param \Illuminate\Http\Request $request 報名請求
* @param string $kslx 考試類型代碼
* @return \Illuminate\Http\Response 報名列表
*/
public function update(Request $request, $kslx)
{
$exam = Extype::find($kslx);
$registered = Exregister::whereNd($exam->nd)->whereXh(Auth::user()->xh)->whereKslx($kslx)->exists();
// 檢測是否已經報過名
if (!$registered) {
// 檢測是否CET4
if (in_array($exam->kslx, Helper::getCet4())) {
// 檢測是否允許新生報考CET4
if (config('constants.status.enable') == Setting::find('KS_CET4_XS')) {
// 不允許新生報考CET4
if (Profile::isFresh(Auth::user())->exists()) {
abort(403, '不允許新生報考CET4');
}
}
}
// 檢測是否CET6
if (config('constants.exam.type.cet6') == $exam->kslx) {
// 檢測是否允許新生報考CET6
if (config('constants.status.enable') == Setting::find('KS_CET6_XS')) {
// 不允許新生報考CET6
if (Profile::isFresh(Auth::user())->exists()) {
abort(403, '不允許新生報考CET6');
}
}
// 檢測CET6是否具有過往成績或者CET4是否及格
if (!Exscore::whereC_xh(Auth::user()->xh)->whereC_kslx(config('constants.exam.type.cet6'))->exists() && !Exscore::isPassed(Auth::user(), Helper::getCet4())->exists()) {
abort(403, '四級成績不達標,不能參加CET6考試');
}
}
// 檢測是否已經報過CET考試
if (config('constants.exam.type.cet') == $exam->ksdl) {
$registered = Exregister::with('type')->whereNd($exam->nd)->whereXh(Auth::user()->xh);
foreach ($registered as $cet) {
if (config('constants.exam.type.cet') == $cet->type->ksdl) {
abort(403, '已經報名本次' . $cet . '考試,' . $cet . '和' . $exam->ksmc . '不能同時報名');
}
}
}
}
$register = new Exregister();
$register->xh = Auth::user()->xh;
$register->xq = Auth::user()->profile->college->pivot->xq;
$register->kslx = $kslx;
$register->bklb = '00';
$register->kssj = $exam->sj;
$register->clbz = config('constants.exam.status.register');
$register->bmsj = date('Y-m-d H:i:s');
$register->nd = $exam->nd;
$register->save();
return redirect('exam')->withStatus('考試報名成功,請交費!');
}