Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Escapehtml.php
Go to the documentation of this file.
1 <?php
13 
14 class Escapehtml implements \Magento\Framework\Data\Form\Filter\FilterInterface
15 {
22  public function inputFilter($value)
23  {
24  return $value;
25  }
26 
33  public function outputFilter($value)
34  {
35  return htmlspecialchars($value);
36  }
37 }
$value
Definition: gender.phtml:16