PluginProbe ʕ •ᴥ•ʔ
VikAppointments Services Booking Calendar / 1.2.21
VikAppointments Services Booking Calendar v1.2.21
1.2.21 1.2.20 trunk 1.2.17 1.2.18 1.2.19
vikappointments / site / helpers / libraries / ical / reader.php
vikappointments / site / helpers / libraries / ical Last commit date
parser 3 days ago reader 3 days ago event.php 3 days ago importer.php 3 days ago index.html 3 days ago parser.php 3 days ago reader.php 3 days ago
reader.php
29 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 * Defines the command needed to extract an iCalendar buffer from
16 * a specific type of source.
17 *
18 * @since 1.7.3
19 */
20 interface VAPIcalReader
21 {
22 /**
23 * Extracts the iCalendar buffer from a source.
24 *
25 * @return string The iCalendar string.
26 */
27 public function load();
28 }
29