* @copyright 2015 NetReviews SAS * @version Release: $Revision: 7.1.4 * @license NetReviews * @date 25/08/2015 * International Registered Trademark & Property of NetReviews SAS */ /** * Class allow to display tpl on the FO */ class BWDisplay extends FrontController { // Assign template, on 1.4 create it else assign for 1.5 public function setTemplate($template) { if (_PS_VERSION_ >= '1.5') parent::setTemplate($template); else $this->template = $template; } // Overload displayContent for 1.4 public function displayContent() { parent::displayContent(); echo Context::getContext()->smarty->fetch($this->template); } }