File "resource.php"

Full Path: /home/romayxjt/public_html/wp-content/plugins/vikbooking/admin/helpers/src/report/resource.php
File size: 858 bytes
MIME-type: text/x-php
Charset: utf-8

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