vendor\klio\klio-bundle\src\Form\Types\Text.php line 17

  1. <?php
  2. namespace Klio\KlioBundle\Form\Types;
  3. use Klio\KlioBundle\Form\Form;
  4. use Symfony\Component\HtmlSanitizer\HtmlSanitizer;
  5. use Symfony\Component\HtmlSanitizer\HtmlSanitizerConfig;
  6. class Text extends Field
  7. {
  8.     public $input;
  9.     protected Form $form;
  10.     private string $value "";
  11.     private array $csrf = [];
  12.     public function  __construct(Form $form$input)
  13.     {
  14.         $this->input $input;
  15.         $this->input->readonlyoupas true;
  16.         $this->fieldConstruct($form$input);
  17.         $this->setClasses();
  18.         $this->setCsrf();
  19.         $this->getValue();
  20.         $this->setValue();
  21.     }
  22.     private function setClasses()
  23.     {
  24.         $this->input->addClass("form-control");
  25.         if ($this->label) {
  26.             if ($this->parent->hasClass("form-floating")) {
  27.                 $labelClone = clone $this->label;
  28.                 $this->parent->removeChild($this->label);
  29.                 $this->parent->appendChild($labelClone);
  30.                 $this->label $labelClone;
  31.             }
  32.             $this->label->addClass("form-label");
  33.         }
  34.     }
  35.     private function setCsrf()
  36.     {
  37.         $this->csrf = array();
  38.         $this->csrf['name'] = $this->name;
  39.         // si le champ fait bien partie de la table, on ajoute les infos db
  40.         if ($this->dbField) {
  41.             $this->csrf['dbTable'] = $this->dbTable;
  42.             $this->csrf['dbId'] = $this->dbId;
  43.             $this->csrf['dbField'] = $this->dbField;
  44.         }
  45.         $this->csrf['id'] = $this->id;
  46.         //if (__DEV__) dump($this->csrf);
  47.     }
  48.     private function getValue()
  49.     {
  50.         /*
  51.         dans l'ordre
  52.         empty
  53.         attribute value
  54.         entity/table.php default value
  55.         db value
  56.         post value , prend le dessus car en cas de post invalide, il faut afficher les valeurs saisies par l'utilisateur, pas celle dans la abase
  57.         */
  58.         if ($this->input->getAttribute('value')) $this->value $this->input->getAttribute('value');
  59.         // db default
  60.         if ($this->dbTable and $this->dbId) {
  61.             $dbvalue $this->form->getValue($this->dbTable$this->dbId$this->dbField);
  62.             $this->value $dbvalue !== false $dbvalue $this->value;
  63.             $config = (new HtmlSanitizerConfig())
  64.                 // Forcefully set the value of all "rel" attributes on "a"
  65.                 // elements to "noopener noreferrer"
  66.                 ->forceAttribute('a''rel''noopener noreferrer')
  67.                 // Drop the "data-custom-attr" attribute from all elements:
  68.                 // this attribute will be removed
  69.                 ->dropAttribute('data-custom-attr''*')
  70.                 // Transform all HTTP schemes to HTTPS
  71.                 //->forceHttpsUrls()
  72.                 // Configure which hosts are allowed in img/audio/video/iframe (by default all are allowed)
  73.                 ->allowMediaHosts(['youtube.com''example.com']);
  74.             $htmlSanitizer = new HtmlSanitizer((new HtmlSanitizerConfig())->allowSafeElements());
  75.             //$this->value = $htmlSanitizer->sanitizeFor('textarea', $this->value);
  76.         }
  77.     }
  78.     private function setValue()
  79.     {
  80.         if ($this->value$this->input->setAttribute('value'$this->value);
  81.     }
  82. }