Your IP : 127.0.0.1


Current Path : /home/dev2.destoffenstraat.com/app/code/WeSupply/Toolbox/Block/
Upload File :
Current File : /home/dev2.destoffenstraat.com/app/code/WeSupply/Toolbox/Block/WeSupplyLinkV2.php

<?php
namespace WeSupply\Toolbox\Block;

class WeSupplyLinkV2 extends WeSupplyLink
{
    protected function _toHtml()
    {
        if (false != $this->getTemplate()) {
            return parent::_toHtml();
        }

        if(!$this->_helper->getWeSupplyEnabled() || !$this->_helper->getDeliveryEstimationsHeaderLinkEnabled()){
            return;
        }

        return '<div class="wesupply-link-v2"><a ' . $this->getLinkAttributes() . ' >' . $this->escapeHtml($this->getLabel()) . '</a></div>';
    }
}