Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
vikbooking
/
admin
/
helpers
/
src
/
report
:
resource.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * @package VikBooking * @subpackage core * @author Alessio Gaggii - E4J srl * @copyright Copyright (C) 2024 E4J srl. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE * @link https://vikwp.com */ // No direct access defined('ABSPATH') or die('No script kiddies please!'); /** * Declares the methods that a specific report resource should provide. * * @since 1.17.1 (J) - 1.7.1 (WP) */ interface VBOReportResource { /** * Returns the resource URL. * * @return string */ public function getUrl(); /** * Returns the resource absolute path. * * @return string */ public function getPath(); /** * Returns the resource summary. * * @return string */ public function getSummary(); }