コード例 #1
0
ファイル: Info.php プロジェクト: tesorogithub/tesoroshop
 /**
  * Add paypalauth block to the customer dashboard
  *
  * @return string
  */
 protected function _toHtml()
 {
     $isExtensionEnabled = Mage::getStoreConfigFlag('opc/paypallogin/status');
     $html = $this->getChildHtml('paypalauth_dashboard');
     if (!$isExtensionEnabled) {
         return parent::_toHtml();
     }
     $html .= parent::_toHtml();
     return $html;
 }
コード例 #2
0
ファイル: Info.php プロジェクト: xiaoguizhidao/magento
 public function _toHtml()
 {
     $this->setTemplate('advancednewsletter/customer/info.phtml');
     return parent::_toHtml();
 }