vendor/symfony/form/ChoiceList/View/ChoiceView.php line 21

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\Form\ChoiceList\View;
  11. use Symfony\Component\Translation\TranslatableMessage;
  12. /**
  13.  * Represents a choice in templates.
  14.  *
  15.  * @author Bernhard Schussek <bschussek@gmail.com>
  16.  */
  17. class ChoiceView
  18. {
  19.     public $label;
  20.     public $value;
  21.     public $data;
  22.     /**
  23.      * Additional attributes for the HTML tag.
  24.      */
  25.     public $attr;
  26.     /**
  27.      * Creates a new choice view.
  28.      *
  29.      * @param mixed                            $data  The original choice
  30.      * @param string                           $value The view representation of the choice
  31.      * @param string|TranslatableMessage|false $label The label displayed to humans; pass false to discard the label
  32.      * @param array                            $attr  Additional attributes for the HTML tag
  33.      */
  34.     public function __construct($datastring $value$label, array $attr = [])
  35.     {
  36.         $this->data $data;
  37.         $this->value $value;
  38.         $this->label $label;
  39.         $this->attr $attr;
  40.     }
  41. }