getQuote(); if ($quote) { $payment = $quote->getPayment(); if ($payment && in_array($payment->getMethod(), $this->_hssMethods)) { return $name; } } if ($blockObject = Mage::getSingleton('core/layout')->getBlock($block)) { return $blockObject->getTemplate(); } return ''; } /** * Get methods * * @return array */ public function getHssMethods() { return $this->_hssMethods; } }