File "LoadTemplatePlugin.php"
Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/flexible-shipping-pro/vendor_prefixed/wpdesk/wp-view/src/Renderer/LoadTemplatePlugin.php
File size: 630 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace FSProVendor\WPDesk\View\Renderer;
use FSProVendor\WPDesk\View\Resolver\Resolver;
/**
* Can render templates
*/
class LoadTemplatePlugin implements \FSProVendor\WPDesk\View\Renderer\Renderer
{
private $plugin;
private $path;
public function __construct($plugin, $path = '')
{
$this->plugin = $plugin;
$this->path = $path;
}
public function set_resolver(\FSProVendor\WPDesk\View\Resolver\Resolver $resolver)
{
}
public function render($template, array $params = null)
{
return $this->plugin->load_template($template, $this->path, $params);
}
}