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


PHP Store::getOldInput方法代码示例

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


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

示例1: oldInput

 /**
  * @return MessageBag
  */
 private function oldInput()
 {
     if (!isset($this->oldInput)) {
         $this->oldInput = new MessageBag((array) $this->sessionStore->getOldInput());
     }
     return $this->oldInput;
 }
开发者ID:hughgrigg,项目名称:ching-shop,代码行数:10,代码来源:ReplyComposer.php

示例2: edit

 /**
  * @return \Cocona\Core\Html\Elements\Form
  */
 public function edit($id)
 {
     $form = $this->app->call([$this->resource, 'form']);
     // Create the route param from the name
     $param = str_replace('-', '_', snake_case($this->resource->name()));
     $form->action($this->to('update', [$param => $id]));
     // Spoof the form method and add the CSRF token
     $form->hidden('_method', 'PUT');
     $form->token();
     // Fill the form with the model and overwrite it with
     // the request if is available
     $form->fill($this->resource->item($id), $this->session->getOldInput());
     return $form;
 }
开发者ID:cocona,项目名称:core,代码行数:17,代码来源:ResourceController.php

示例3: getValueAttribute

 /**
  * Get the value that should be assigned to the field.
  *
  * @param  string  $name
  * @param  string  $value
  * @return string
  */
 public function getValueAttribute($name, $value = null)
 {
     if (is_null($name)) {
         return $value;
     }
     if (isset($this->session) and $this->session->hasOldInput($name)) {
         return $this->session->getOldInput($name);
     }
     if (!is_null($value)) {
         return $value;
     }
     if (isset($this->model) and isset($this->model[$name])) {
         return $this->getModelValueAttribute($name);
     }
 }
开发者ID:shinichi81,项目名称:laravel4demo,代码行数:22,代码来源:FormBuilder.php

示例4: getOldInput

 /**
  * Get the requested item from the flashed input array.
  *
  * @param string $key
  * @param mixed $default
  * @return mixed 
  * @static 
  */
 public static function getOldInput($key = null, $default = null)
 {
     return \Illuminate\Session\Store::getOldInput($key, $default);
 }
开发者ID:satriashp,项目名称:tour,代码行数:12,代码来源:_ide_helper.php

示例5: oldInputIsEmpty

 /**
  * Determine if the old input is empty.
  *
  * @return bool
  */
 public function oldInputIsEmpty()
 {
     return isset($this->session) && count($this->session->getOldInput()) == 0;
 }
开发者ID:GeorgeShazkho,项目名称:micros-de-conce,代码行数:9,代码来源:FormBuilder.php

示例6: valueFromOld

 /**
  * Get the value from old input.
  *
  * @param  string $name
  * @return mixed|null
  */
 protected function valueFromOld($name)
 {
     return $this->session->getOldInput($name);
 }
开发者ID:sahibalejandro,项目名称:laravel-form-helpers,代码行数:10,代码来源:Form.php


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