Amazon_S3_And_CloudFront::remove_wp_plugin_dir PHP Method

remove_wp_plugin_dir() public method

Helper to remove the plugin directory from the plugin path
public remove_wp_plugin_dir ( string $path ) : string
$path string
return string
    function remove_wp_plugin_dir($path)
    {
        $plugin = str_replace(WP_PLUGIN_DIR, '', $path);
        return substr($plugin, 1);
    }
Amazon_S3_And_CloudFront