• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP Confide类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中Confide的典型用法代码示例。如果您正苦于以下问题:PHP Confide类的具体用法?PHP Confide怎么用?PHP Confide使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



在下文中一共展示了Confide类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: update

 /**
  * Update the specified pet in storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function update($id)
 {
     $pet = Pet::findOrFail($id);
     $data = Input::all();
     $data['user_id'] = Confide::user()->id;
     $validator = Validator::make($data, Pet::$rules);
     $response = [];
     $response['data'] = $data;
     if ($validator->fails()) {
         $response['success'] = false;
         $response['errors'] = $validator->errors();
         if (Request::ajax()) {
             return Response::json($response);
         } else {
             return Redirect::back()->withErrors($validator->errors());
         }
     }
     $pet->update($data);
     $response['success'] = true;
     $response['errors'] = [];
     if (Request::ajax()) {
         return Response::json($response);
     } else {
         return Redirect::action('UsersController@showProfile', Confide::user()->id);
     }
 }
开发者ID:ZJScapstone,项目名称:capstone.dev,代码行数:32,代码来源:PetsController.php


示例2: home

 /**
  * @return $this
  */
 public function home()
 {
     if (Confide::User()) {
         $this->dsp->content = Confide::user()->getContent();
     }
     return View::make('dispatch')->with(['dsp' => $this->dsp]);
 }
开发者ID:birdiebel,项目名称:G2016,代码行数:10,代码来源:HomeController.php


示例3: isExist

 /**
  * @param $club_id
  * @return bool
  */
 public static function isExist($club_id)
 {
     $count = DB::table('userclubs')->where('user_id', '=', Confide::user()->id)->where('club_id', '=', $club_id)->count();
     if ($count == 0) {
         return false;
     }
     return true;
 }
开发者ID:birdiebel,项目名称:G2016,代码行数:12,代码来源:Userclub.php


示例4: getlivrabileFactura

 public function getlivrabileFactura($id_factura)
 {
     $ids = self::getIDsDepartamente(Confide::getDepartamenteUser());
     $sql = self::getlivrabileFacturateNefacturate($id_factura, true);
     $factura = self::getFactura($id_factura);
     $livrabile = DB::select($sql);
     return View::make('livrabile_factura.list')->with('livrabile', $livrabile)->with('factura', $factura);
 }
开发者ID:binaryk,项目名称:lareab,代码行数:8,代码来源:LivrabileController.php


示例5: getIndex

 public function getIndex()
 {
     $user = Confide::user();
     if (!$user->isStaff() && Patient::find($user->id) == null) {
         return Redirect::route('patient.create');
     } else {
         return View::make('home/index', compact('user'));
     }
 }
开发者ID:carlosqueiroz,项目名称:medical-management-system,代码行数:9,代码来源:HomeController.php


示例6: validateRoles

 /**
  * Provide an array of strings that map to valid roles.
  * @param array $roles
  * @return stdClass
  */
 public function validateRoles(array $roles)
 {
     $user = Confide::user();
     $roleValidation = new stdClass();
     foreach ($roles as $role) {
         $roleValidation->{$role} = empty($user) ? false : $user->hasRole($role);
     }
     return $roleValidation;
 }
开发者ID:ntk148v,项目名称:mini_cms,代码行数:14,代码来源:Role.php


示例7: uploadUserImage

 public function uploadUserImage()
 {
     $user = Confide::user();
     $user->img_path = $this->getAndMoveFile('file');
     if ($user->save()) {
         return Redirect::action('UsersController@show', $user->id);
     } else {
         throw new Exception("user image not updated!");
     }
 }
开发者ID:ZJScapstone,项目名称:capstone.dev,代码行数:10,代码来源:ImagesController.php


示例8: logAudit

 public static function logAudit($entity, $action, $description)
 {
     $audit = new Audit();
     $audit->date = date('Y-m-d');
     $audit->description = $description;
     $audit->user = Confide::user()->username;
     $audit->entity = $entity;
     $audit->action = $action;
     $audit->save();
 }
开发者ID:kenkode,项目名称:xaraerp,代码行数:10,代码来源:Audit.php


示例9: showAll

 public function showAll()
 {
     $user = Confide::user();
     $patients = Patient::join('user', 'user.id', '=', 'patient.user_id')->get();
     if ($user->isStaff()) {
         return View::make('home.patient.show-all', compact('user', 'patients'));
     } else {
         return Redirect::route('home.index');
     }
 }
开发者ID:carlosqueiroz,项目名称:medical-management-system,代码行数:10,代码来源:PatientController.php


示例10: createComment

 public function createComment($conversation)
 {
     $user = Confide::user();
     $comment = new Comment();
     $comment->conversation_id = $conversation->id;
     $comment->user_id = $user->id;
     $comment->fill(Input::all());
     $comment->save();
     return Redirect::route('conversation.show', array($conversation->id));
 }
开发者ID:carlosqueiroz,项目名称:medical-management-system,代码行数:10,代码来源:ConversationController.php


示例11: getEditInvestitie

 public function getEditInvestitie($id)
 {
     $departamente = Confide::getDepartamenteUser();
     $tva = self::getCoteTVA();
     $imobil_class = new \Codecorner\Imobil\Controllers\ImobileController();
     $imobile = $imobil_class->getImobil();
     $cheltuieli = self::getCheltuieliSF();
     $investitie = DB::select("SELECT\n            investitie.id,\n            investitie.denumire,\n            investitie.cota_indiviza_spatii_locuit,\n            investitie.cota_indiviza_spatii_alta_destinatie,\n            investitie.finantare_nerambursabila_por,\n            investitie.cofinantare_ap_eligibil,\n            investitie.cofinantare_uat_eligibil,\n            investitie.cofinantare_ap_neeligibil_ad,\n            investitie.cofinantare_uat_neeligibil,\n            investitie.cofinantare_ap_neeligibil_sl,\n            investitie.id_imobil,\n            investitie.id_departament,\n            investitie.id_tva,\n            l.denumire AS localitate,\n            j.denumire AS judet,\n            i.adresa\n            FROM por12_investitie investitie\n            INNER JOIN imobil i ON i.id = investitie.id_imobil AND i.logical_delete = 0\n            LEFT OUTER JOIN judet j ON j.id_judet = i.id_judet AND j.logical_delete = 0\n            LEFT OUTER JOIN localitate l ON l.id_localitate = i.id_localitate AND l.logical_delete = 0\n            WHERE investitie.id = :id_investitie", array('id_investitie' => $id));
     return View::make('investitie_por_axa12.edit')->with('investitie', $investitie[0])->with('imobile', $imobile)->with('tva', $tva)->with('finantare_nerambursabila_por', 60)->with('cofinantare_ap_neeligibil_ad', 100)->with('departamente', self::object_to_array($departamente))->with('cheltuieli', $cheltuieli);
 }
开发者ID:binaryk,项目名称:lareab,代码行数:10,代码来源:InvestitiePORAxa12Controller.php


示例12: index

 /**
  * Display a listing of notifications
  *
  * @return Response
  */
 public function index()
 {
     $data = Input::all();
     $pagination = Input::has('pagination') ? Input::get('pagination') : 10;
     // FILTRA RESULTADOS
     $notifications = Notification::where(function ($query) {
         switch (Input::get('view')) {
             case 'next':
                 // AGENDADAS
                 $query->where('date', '>', date('Y-m-d H:i:s'));
                 break;
             case 'all':
                 // $query->where( 'user_id', Confide::user()->id );
                 break;
             default:
                 // NÃO LIDAS
                 $query->where('date', '<', date('Y-m-d H:i:s'))->where('status', 0);
                 break;
         }
         if (Input::has('type')) {
             $query->where('type', Input::get('type'));
         }
         if (Input::has('owner_type')) {
             $query->where('owner_type', Input::get('owner_type'));
         }
         if (Input::has('owner_id')) {
             $query->where('owner_id', Input::get('owner_id'));
         }
         if (Input::has('order')) {
             $query->orderBy('date', Input::get('order'));
         }
     })->where('user_id', Confide::user()->id)->orderBy('date', Input::get('order', 'DESC'))->paginate($pagination);
     switch (Input::get('view', 'unread')) {
         case 'next':
             $labels['nothing'] = 'Nenhuma notificação agendada';
             break;
         case 'all':
             $labels['nothing'] = 'Nenhuma notificação ainda';
             break;
         default:
             // case 'unread'
             $labels['nothing'] = 'Nenhuma notificação não lida';
             break;
     }
     $labels['count_next'] = Notification::where('user_id', Confide::user()->id)->where('date', '>', date('Y-m-d H:i:s'))->count();
     $labels['count_all'] = Notification::where('user_id', Confide::user()->id)->count();
     $labels['count_unread'] = Notification::where('user_id', Confide::user()->id)->where('date', '<', date('Y-m-d H:i:s'))->where('status', false)->count();
     //$notifications->getCollection()->paginate( $pagination );//->paginate( $pagination ;
     if (Request::ajax()) {
         return View::make('notifications.panels.index', compact('notifications', 'labels'));
     } else {
         return View::make('notifications.index', compact('notifications', 'labels'));
     }
 }
开发者ID:waldenylson,项目名称:alfredapp,代码行数:59,代码来源:NotificationsController.php


示例13: add

 /**
  * @param string $backUrl
  * @param int $club_id
  * @return \Illuminate\Http\RedirectResponse
  */
 public function add($backUrl = 'home', $club_id = 0)
 {
     if ($club_id == 0) {
         return Redirect::route($backUrl);
     }
     $userclub = new Userclub();
     $userclub->user_id = Confide::user()->id;
     $userclub->club_id = $club_id;
     $userclub->save();
     return Redirect::route($backUrl);
 }
开发者ID:birdiebel,项目名称:G2016,代码行数:16,代码来源:UserclubsController.php


示例14: __construct

 public function __construct()
 {
     // Fetch the User object, or set it to false if not logged in
     if (Confide::User()) {
         $this->logged_in_user = Confide::User();
     } else {
         $this->logged_in_user = false;
     }
     View::share('logged_in_user', $this->logged_in_user);
     View::share('success_message', $this->success_message);
 }
开发者ID:viniciusferreira,项目名称:laravel-skeleton,代码行数:11,代码来源:AdminController.php


示例15: getBalance

 public function getBalance($wallet_id)
 {
     $balance = 0;
     if (!Auth::guest()) {
         $user = Confide::user();
         $balanceCoin = Balance::where('user_id', '=', $user->id)->where('wallet_id', '=', $wallet_id)->first();
         if (isset($balanceCoin->amount)) {
             $balance = $balanceCoin->amount;
         }
     }
     return $balance;
 }
开发者ID:bizcoine,项目名称:ecoinstrader,代码行数:12,代码来源:Balance.php


示例16: beforeHome

 /**
  * @return string
  */
 public function beforeHome()
 {
     // Extend function home()
     if (!Confide::user()->isManager()) {
         return $this->dsp->content = $this->directory . ".nomanager";
     } else {
         if (!Confide::user()->isDomaine()) {
             return $this->dsp->content = $this->directory . ".nodomaine";
         }
     }
     // Sinon procedure Home normale
 }
开发者ID:birdiebel,项目名称:G2016,代码行数:15,代码来源:ManagersController.php


示例17: getCurrentOrdersUser

 public function getCurrentOrdersUser($market_id, $user_id = '')
 {
     if (Auth::guest()) {
         return false;
     }
     $user = Confide::user();
     if ($user_id == '') {
         $user_id = $user->id;
     }
     $orders = Order::where('market_id', '=', $market_id)->where('user_id', '=', $user_id)->whereIn('status', $this->status_active)->orderBy('created_at', 'desc')->get();
     return $orders;
 }
开发者ID:bizcoine,项目名称:ecoinstrader,代码行数:12,代码来源:Order.php


示例18: resetpassword

 public function resetpassword($user)
 {
     if (!Confide::forgotPassword($user->email)) {
         if (!Api::make(array('error'))) {
             return Response::json(array('result' => 'error'));
         }
     } else {
         if (!Api::make(array('success'))) {
             return Response::json(array('result' => 'success'));
         }
     }
 }
开发者ID:Aranjedeath,项目名称:Laravel_Starter,代码行数:12,代码来源:UserService.php


示例19: getSeriiFacturare

 public function getSeriiFacturare()
 {
     $ids = self::getIDsDepartamente(Confide::getDepartamenteUser());
     $sql = "SELECT \n          sf.id,\n          sf.serie,\n          sf.numar,\n          sf.id_entitate,\n          ent.denumire AS entitate\n          FROM serie_factura sf\n          INNER JOIN entitate ent ON ent.id = sf.id_entitate AND ent.logical_delete = 0\n          WHERE ";
     if (!Entrust::can("administrare_platforma")) {
         /*$sql .= 
           " INNER JOIN departament d ON d.id_entitate = ent.id AND d.logical_delete = 0" .
           " AND d.id IN (" . $ids . ")";*/
         $sql .= " EXISTS(SELECT id FROM departament WHERE departament.id_entitate = sf.id_entitate AND departament.logical_delete = 0\n                    AND departament.id IN (" . $ids . ")) AND ";
     }
     $sql .= " sf.logical_delete = 0 ORDER BY ent.id, sf.serie";
     //dd($sql);
     $serii = DB::select($sql);
     return View::make('serii_facturare.list')->with('serii', $serii);
 }
开发者ID:binaryk,项目名称:lareab,代码行数:15,代码来源:SerieFacturareController.php


示例20: submitApplication

 public static function submitApplication($data)
 {
     $member_id = array_get($data, 'member_id');
     $loanproduct_id = array_get($data, 'loanproduct_id');
     $member = Member::findorfail($member_id);
     $loanproduct = Loanproduct::findorfail($loanproduct_id);
     $application = new Loanaccount();
     $application->member()->associate($member);
     $application->loanproduct()->associate($loanproduct);
     $application->application_date = array_get($data, 'application_date');
     $application->amount_applied = array_get($data, 'amount_applied');
     $application->interest_rate = $loanproduct->interest_rate;
     $application->period = $loanproduct->period;
     $application->repayment_duration = array_get($data, 'repayment_duration');
     $application->save();
     Audit::logAudit(date('Y-m-d'), Confide::user()->username, 'loan application', 'Loans', array_get($data, 'amount_applied'));
 }
开发者ID:kenkode,项目名称:xaraerp,代码行数:17,代码来源:Loanaccount.php



注:本文中的Confide类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP Config类代码示例发布时间:2022-05-20
下一篇:
PHP ConfService类代码示例发布时间:2022-05-20
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap