checkbox.php
1 month ago
color.php
1 month ago
date.php
1 month ago
editor.php
1 month ago
file.php
1 month ago
hidden.php
1 month ago
html.php
1 month ago
index.html
1 month ago
number.php
1 month ago
select.php
1 month ago
separator.php
1 month ago
tel.php
1 month ago
text.php
1 month ago
textarea.php
1 month ago
html.php
19 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @package VikAppointments |
| 4 | * @subpackage core |
| 5 | * @author E4J s.r.l. |
| 6 | * @copyright Copyright (C) 2021 E4J s.r.l. All Rights Reserved. |
| 7 | * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL |
| 8 | * @link https://vikwp.com |
| 9 | */ |
| 10 | |
| 11 | // No direct access |
| 12 | defined('ABSPATH') or die('No script kiddies please!'); |
| 13 | |
| 14 | // display HTML attribute as it is |
| 15 | if (!empty($displayData['html'])) |
| 16 | { |
| 17 | echo $displayData['html']; |
| 18 | } |
| 19 |