vendor\klio\klio-bundle\src\Form\Types\Text.php line 22
<?php
namespace Klio\KlioBundle\Form\Types;
use Klio\KlioBundle\Form\Form;
use Symfony\Component\HtmlSanitizer\HtmlSanitizer;
use Symfony\Component\HtmlSanitizer\HtmlSanitizerConfig;
class Text extends Field
{
public $input;
protected Form $form;
private string $value = "";
private array $csrf = [];
public function __construct(Form $form, $input)
{
$this->input = $input;
$this->input->readonlyoupas = true;
$this->fieldConstruct($form, $input);
$this->setClasses();
$this->setCsrf();
$this->getValue();
$this->setValue();
}
private function setClasses()
{
$this->input->addClass("form-control");
if ($this->label) {
if ($this->parent->hasClass("form-floating")) {
$labelClone = clone $this->label;
$this->parent->removeChild($this->label);
$this->parent->appendChild($labelClone);
$this->label = $labelClone;
}
$this->label->addClass("form-label");
}
}
private function setCsrf()
{
$this->csrf = array();
$this->csrf['name'] = $this->name;
// si le champ fait bien partie de la table, on ajoute les infos db
if ($this->dbField) {
$this->csrf['dbTable'] = $this->dbTable;
$this->csrf['dbId'] = $this->dbId;
$this->csrf['dbField'] = $this->dbField;
}
$this->csrf['id'] = $this->id;
//if (__DEV__) dump($this->csrf);
}
private function getValue()
{
/*
dans l'ordre
empty
attribute value
entity/table.php default value
db value
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
*/
if ($this->input->getAttribute('value')) $this->value = $this->input->getAttribute('value');
// db default
if ($this->dbTable and $this->dbId) {
$dbvalue = $this->form->getValue($this->dbTable, $this->dbId, $this->dbField);
$this->value = $dbvalue !== false ? $dbvalue : $this->value;
$config = (new HtmlSanitizerConfig())
// Forcefully set the value of all "rel" attributes on "a"
// elements to "noopener noreferrer"
->forceAttribute('a', 'rel', 'noopener noreferrer')
// Drop the "data-custom-attr" attribute from all elements:
// this attribute will be removed
->dropAttribute('data-custom-attr', '*')
// Transform all HTTP schemes to HTTPS
//->forceHttpsUrls()
// Configure which hosts are allowed in img/audio/video/iframe (by default all are allowed)
->allowMediaHosts(['youtube.com', 'example.com']);
$htmlSanitizer = new HtmlSanitizer((new HtmlSanitizerConfig())->allowSafeElements());
//$this->value = $htmlSanitizer->sanitizeFor('textarea', $this->value);
}
}
private function setValue()
{
if ($this->value) $this->input->setAttribute('value', $this->value);
}
}