Exemplo n.º 1
0
 /**
  * Can render the block
  *
  * @return bool
  */
 public function canRender()
 {
     $this->_ensureLoaded();
     if ($this->_canRender == null) {
         $this->_canRender = parent::canRender() && !$this->isOrderConfirmationPage() && ($this->_hasAjaxScript() || $this->_hasCartJS() || $this->_hasCustomerJS());
     }
     return $this->_canRender;
 }