rules
1 month ago
types
1 month ago
control.php
1 month ago
emptyloader.php
1 month ago
factory.php
1 month ago
field.php
1 month ago
index.html
1 month ago
loader.php
1 month ago
renderer.php
1 month ago
requestor.php
1 month ago
rule.php
1 month ago
control.php
31 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 | /** |
| 15 | * VikAppointments custom field control interface. |
| 16 | * |
| 17 | * @since 1.7 |
| 18 | */ |
| 19 | interface VAPCustomFieldControl |
| 20 | { |
| 21 | /** |
| 22 | * Returns the HTML of the field. |
| 23 | * |
| 24 | * @param array $data An array of display data. |
| 25 | * @param string $input The HTML of the input to wrap. |
| 26 | * |
| 27 | * @return string The HTML of the input. |
| 28 | */ |
| 29 | public function render($data, $input = null); |
| 30 | } |
| 31 |