コード例 #1
0
ファイル: Sidebar.php プロジェクト: nilshopsahl/hasla.local
 public function getCheckoutUrl()
 {
     if (!$this->helper('onestepcheckout')->isOnepageCheckoutLinksEnabled()) {
         return parent::getCheckoutUrl();
     }
     return $this->getUrl('onestepcheckout', array('_secure' => true));
 }
コード例 #2
0
 /**
  * Get one page checkout page url
  *
  * @return bool
  */
 public function getCheckoutUrl()
 {
     return !$this->helper('onestepcheckout')->isRewriteCheckoutLinksEnabled() ? parent::getCheckoutUrl() : $this->getUrl('onestepcheckout', array('_secure' => true));
 }