Repository URL to install this package:
|
Version:
1.11.1 ▾
|
jsarnowski/flexible-shipping-pro
/
wpdesk
/
wp-builder
/
src
/
Plugin
/
WithoutNamespace
/
Has_Plugin_Info.php
|
|---|
<?php
namespace FSProVendor;
if (!\interface_exists('FSProVendor\\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 \FSProVendor\WPDesk_Translatable
{
/**
* @return string
*/
public function get_plugin_file_name();
/**
* @return string
*/
public function get_plugin_dir();
/**
* @return string
*/
public function get_version();
}