File "Has_Plugin_Info.php"

Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/flexible-shipping-pro/vendor/wpdesk/wp-builder/src/Plugin/WithoutNamespace/Has_Plugin_Info.php
File size: 467 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

if ( ! interface_exists( 'WPDesk_Translatable' ) ) {
	require_once __DIR__ . '/Translatable.php';
}


/**
 * Have MUST HAVE info for plugin instantion
 *
 * have to be compatible with PHP 5.2.x
 */
interface WPDesk_Has_Plugin_Info extends WPDesk_Translatable {
	/**
	 * @return string
	 */
	public function get_plugin_file_name();

	/**
	 * @return string
	 */
	public function get_plugin_dir();

	/**
	 * @return string
	 */
	public function get_version();

}