# vikbooking/trunk/admin/helpers/src/platform/interface.php

VikBooking Hotel Booking Engine &amp; PMS, version trunk. 44 lines.

- Page: https://pluginprobe.com/plugins/vikbooking/trunk/code/admin/helpers/src/platform/interface.php
- Raw: https://pluginprobe.com/plugins/vikbooking/trunk/raw/admin/helpers/src/platform/interface.php
- Modified: 2022-06-10T13:55:52+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/vikbooking/trunk/code/admin/helpers/src/platform/interface.php#L10-L20`.

```php
<?php
/** 
 * @package     VikBooking
 * @subpackage  core
 * @author      E4J s.r.l.
 * @copyright   Copyright (C) 2021 E4J s.r.l. All Rights Reserved.
 * @license     http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
 * @link        https://vikwp.com
 */

// No direct access
defined('ABSPATH') or die('No script kiddies please!');

/**
 * Declares all the helper methods that may differ between every supported platform.
 * 
 * @since 1.5
 */
interface VBOPlatformInterface
{
	/**
	 * Returns the URI helper instance.
	 *
	 * @return 	VBOPlatformUriInterface
	 */
	public function getUri();

	/**
	 * Returns the mail sender instance.
	 * 
	 * @return  VBOPlatformMailerInterface
	 */
	public function getMailer();

	/**
	 * Returns the event dispatcher instance.
	 * 
	 * @return  VBOPlatformDispatcherInterface
	 * 
	 * @since   1.5.10
	 */
	public function getDispatcher();
}

```
