laravel 根据不同组织加载不同视图的实现
发布:smiling 来源: PHP粉丝网 添加日期:2022-01-04 19:44:13 浏览: 评论:0
今天小编就为大家分享一篇laravel 根据不同组织加载不同视图的实现,具有很好的参考价值,希望对大家有所帮助,一起跟随小编过来看看吧。
一,controller 层定义helper.php 文件
定义全局常量
- public function __construct()
- {
- $this->middleware(function ($request, $next) {
- $this->_user = Auth::user();
- //全局的数据处理,所有视图共用
- $this->_beforeActionInit();
- if ($this->_user) {
- define('ORG_ID', $this->_user->organization_id);
- $this->_currentOrganization = Organization::find(ORG_ID);
- } else {
- define('ORG_ID', 0);
- }
- View::share('user', $this->_user);
- View::share('currentOrganization', $this->_currentOrganization);
- return $next($request);
- });
- }
- /** * 获取对应视图 */if (!function_exists('get_organization_view')) { /** * @param $flag * @return \Illuminate\Config\Repository|mixed */ function get_organization_view($flag, $org_id = 1) { $view = config("view.$flag." . $org_id); if (emptyempty($view)) { throw new RuntimeException('Orgnization Error'); } return $view; }}
- //二, config 下定义view.php
- return [
- 'register' => [
- 1 => 'register.1',
- 2 => 'register.2'
- ]
- ]
- // 三,sercive 层定义UserService.php
- public function getValidateRule($org_id)
- {
- $rule = [//验证必填项,确认密码和密码要相同
- 'userName' => 'required|alpha_num|size:6|regex:/^[a-zA-Z]{3}[0-9]{2}[a-zA-Z]{1}$/',
- 'password' => 'required|min:6',
- 'confirmPassword' => 'required|same:password',
- ];
- return $rule;
- }
- public function __construct()
- {
- $this->middleware(function ($request, $next) {
- $this->_user = Auth::user();
- //全局的数据处理,所有视图共用
- $this->_beforeActionInit();
- if ($this->_user) {
- define('ORG_ID', $this->_user->organization_id);
- $this->_currentOrganization = Organization::find(ORG_ID);
- } else {
- define('ORG_ID', 0);
- }
- View::share('user', $this->_user);
- View::share('currentOrganization', $this->_currentOrganization);
- return $next($request);
- });
- }
- /** * 获取对应视图 */if (!function_exists('get_organization_view')) { /** * @param $flag * @return \Illuminate\Config\Repository|mixed */ function get_organization_view($flag, $org_id = 1) { $view = config("view.$flag." . $org_id); if (emptyempty($view)) { throw new RuntimeException('Orgnization Error'); } return $view; }}
- //二, config 下定义view.php
- return [
- 'register' => [
- 1 => 'register.1',
- 2 => 'register.2'
- ]
- ]
- // 三,sercive 层定义UserService.php
- public function getValidateRule($org_id)
- {
- $rule = [//验证必填项,确认密码和密码要相同
- 'userName' => 'required|alpha_num|size:6|regex:/^[a-zA-Z]{3}[0-9]{2}[a-zA-Z]{1}$/',
- 'password' => 'required|min:6',
- 'confirmPassword' => 'required|same:password',
- ];
- return $rule;
- }
四,view下定义视图
register文件夹下有
1.blade.php,
2.blade.php
- //五,controller下引用
- /**
- * 注册
- */
- public function register(Request $request)
- {
- //提交注册
- if ($request->isMethod('post')) {
- $credentials = $request->only(['userName', 'password', 'confirmPassword']);//表单提交数据
- $rules = UserService::make($location->organization_id)->getValidateRule($location->organization_id);
- $validator = Validator::make($credentials, $rules);
- if ($validator->fails()) {//验证不通过
- return Redirect::back()->withInput()->withErrors($validator);
- }
- $exists = User::where('name', $credentials['userName'])->first();
- if ($exists) {
- $result = Lang::has("register.userExists") ? trans("register.userExists") : "User exists";
- return $this->_remind('error', $result, 'register');
- }
- $user = new User();
- $user->name = trim($credentials['userName']);
- $user->password = bcrypt($credentials['password']);
- if ($user->save()) {
- //注册成功
- return redirect('/login')->with('msg', Lang::has("register.success") ? trans("register.success") : 'Register Success.');
- } else {
- //注册失败
- $validator->errors()->add('other', $user);//如果注册失败会把错误原因返回
- return Redirect::back()->withInput()->withErrors($validator);
- }
- }
- return view(get_organization_view('register',$organization_id), ["location" => $location->name]);//加载视图
- } catch (\Exception $ex){
- $this->_remind('error', $ex->getMessage(),'getActivationCode');
- }
- }
Tags: laravel组织加载 laravel不同视图
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)