PluginProbe ʕ •ᴥ•ʔ
VikAppointments Services Booking Calendar / 1.2.20
VikAppointments Services Booking Calendar v1.2.20
1.2.21 1.2.20 trunk 1.2.17 1.2.18 1.2.19
vikappointments / site / helpers / libraries / widget / input.php
vikappointments / site / helpers / libraries / widget Last commit date
radio 1 month ago searchbar 1 month ago index.html 1 month ago input.php 1 month ago layout.php 1 month ago
input.php
28 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 * Base interface to display a custom input.
16 *
17 * @since 1.6
18 */
19 interface UIInput
20 {
21 /**
22 * Call this method to build and return the HTML of the input.
23 *
24 * @return string The input HTML.
25 */
26 public function display();
27 }
28