当前位置: 首页>>代码示例>>PHP>>正文


PHP Store::getToken方法代码示例

本文整理汇总了PHP中Illuminate\Session\Store::getToken方法的典型用法代码示例。如果您正苦于以下问题:PHP Store::getToken方法的具体用法?PHP Store::getToken怎么用?PHP Store::getToken使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Illuminate\Session\Store的用法示例。


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

示例1: __construct

 /**
  * Class constructor
  *
  * @param \Illuminate\Html\HtmlBuilder      $html
  * @param \Illuminate\Routing\UrlGenerator  $url
  * @param \Illuminate\Session\Store         $session
  * @param \Illuminate\Config\Repository     $config
  */
 public function __construct(HtmlBuilder $html, UrlGenerator $url, Session $session, Config $config)
 {
     $this->url = $url;
     $this->html = $html;
     $this->csrfToken = $session->getToken();
     $this->config = $config;
     $this->loadConfig();
     $this->session = $session;
     $this->errors = $session->get('errors');
 }
开发者ID:jarnstedt,项目名称:former,代码行数:18,代码来源:Former.php

示例2: __construct

 /**
  * The constructor
  *
  * @param HtmlBuilder  $html
  * @param UrlGenerator $url
  * @param Session      $session
  */
 public function __construct(HtmlBuilder $html, UrlGenerator $url, Session $session)
 {
     parent::__construct($html, $url, $session->getToken());
     $this->session = $session;
     $this->requiredFields = [];
     $this->errorFields = [];
     if ($this->session->has('formhelper-required-fields')) {
         $this->requiredFields = $this->session->get('formhelper-required-fields');
         $this->session->forget('formhelper-required-fields');
     }
     if ($this->session->has('formhelper-error-fields')) {
         $this->errorFields = $this->session->get('formhelper-error-fields');
         $this->session->forget('formhelper-error-fields');
     }
 }
开发者ID:artisaninweb,项目名称:laravel-formvalidation-helper,代码行数:22,代码来源:FormBuilder.php

示例3: getToken

 /**
  * Get the CSRF token value.
  *
  * @return string 
  * @static 
  */
 public static function getToken()
 {
     return \Illuminate\Session\Store::getToken();
 }
开发者ID:satriashp,项目名称:tour,代码行数:10,代码来源:_ide_helper.php

示例4: token

 /**
  * Generate a hidden field with the current CSRF token.
  *
  * @return string
  */
 public function token()
 {
     $token = !empty($this->csrfToken) ? $this->csrfToken : $this->session->getToken();
     return $this->hidden('_token', $token);
 }
开发者ID:GeorgeShazkho,项目名称:micros-de-conce,代码行数:10,代码来源:FormBuilder.php


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