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


PHP MessageBag::get方法代码示例

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


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

示例1: testFormatIsRespected

 public function testFormatIsRespected()
 {
     $container = new MessageBag();
     $container->setFormat('<p>:message</p>');
     $container->add('foo', 'bar');
     $container->add('boom', 'baz');
     $this->assertEquals('<p>bar</p>', $container->first('foo'));
     $this->assertEquals(array('<p>bar</p>'), $container->get('foo'));
     $this->assertEquals(array('<p>bar</p>', '<p>baz</p>'), $container->all());
     $this->assertEquals('bar', $container->first('foo', ':message'));
     $this->assertEquals(array('bar'), $container->get('foo', ':message'));
     $this->assertEquals(array('bar', 'baz'), $container->all(':message'));
 }
开发者ID:hochanh,项目名称:Bootsoft-Bowling,代码行数:13,代码来源:MessageBagTest.php

示例2: getErrorMessages

 /**
  * @param string $key
  * @return array
  */
 public function getErrorMessages($key)
 {
     if ($this->errors !== null) {
         return $this->errors->get($key);
     }
     return [];
 }
开发者ID:autocar,项目名称:FluentForm,代码行数:11,代码来源:Base.php

示例3: get

 /**
  * Check for the key in the error manager session else return the messages 
  * from the message bag
  *
  * @param  string  $key
  * @param  string  $format
  * @return array
  */
 public function get($key, $format = null)
 {
     if (Session::has('errorManager.errors')) {
         $errors = new parent(Session::get('errorManager.errors'));
         if ($errors->has($key)) {
             return $errors->get($key);
         }
     }
     return parent::get($key);
 }
开发者ID:michaeljennings,项目名称:errormanager,代码行数:18,代码来源:ErrorManager.php

示例4: __construct

 /**
  * Constructor.
  *
  * @param int                           $httpStatusCode   HTTP status code
  * @param mixed                         $errorCode        Internal error code
  * @param string                        $errorTitle       Error description
  * @param Illuminate\Support\MessageBag $errors           Validation errors
  */
 public function __construct($httpStatusCode, $errorCode, $errorTitle, ValidationMessages $errors = NULL)
 {
     $data = ['errors' => []];
     if ($errors) {
         foreach ($errors->keys() as $field) {
             foreach ($errors->get($field) as $message) {
                 $data['errors'][] = ['status' => $httpStatusCode, 'code' => $errorCode, 'title' => 'Validation Fail', 'detail' => $message, 'meta' => ['field' => $field]];
             }
         }
     }
     parent::__construct($data, $httpStatusCode);
 }
开发者ID:peacefrog333,项目名称:laravel-jsonapi,代码行数:20,代码来源:MultiErrorResponse.php

示例5: get

 /**
  * Gets all the flash messages of a given type.
  * @param $key
  * @param $format
  * @return array
  */
 public function get($key, $format = null)
 {
     $message = parent::get($key, $format);
     $this->purge();
     return $message;
 }
开发者ID:betes-curieuses-design,项目名称:ElieJosiePhotographie,代码行数:12,代码来源:FlashBag.php

示例6: getError

 /**
  * Get error text from session in parent class
  *
  * @param  string $name
  *
  * @return string
  */
 private function getError($name = null)
 {
     return $this->local_errors->get($name);
 }
开发者ID:stolz,项目名称:laravel-form-builder,代码行数:11,代码来源:Foundation.php

示例7: getWarnings

 /**
  * Get the warning messages for a form control.
  *
  * @param string $key
  * @return array of message strings
  */
 public function getWarnings($key)
 {
     return array_merge($this->warning_messages->get($key), $this->getWarningsFromAncestor($key));
 }
开发者ID:fewagency,项目名称:fluent-form,代码行数:10,代码来源:AbstractControlBlockContainer.php


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