# vikbooking/1.8.15/admin/helpers/src/report/resource.php

VikBooking Hotel Booking Engine &amp; PMS, version 1.8.15. 42 lines.

- Page: https://pluginprobe.com/plugins/vikbooking/1.8.15/code/admin/helpers/src/report/resource.php
- Raw: https://pluginprobe.com/plugins/vikbooking/1.8.15/raw/admin/helpers/src/report/resource.php
- Modified: 2026-09-14T11:37:40+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/1.8.15/code/admin/helpers/src/report/resource.php#L10-L20`.

```php
<?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();
}

```
