00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 class Mage_Checkout_Block_Links extends Mage_Core_Block_Template
00035 {
00036
00037
00038
00039
00040
00041
00042 public function addCartLink()
00043 {
00044 if ($parentBlock = $this->getParentBlock()) {
00045 $count = $this->helper('checkout/cart')->getSummaryCount();
00046
00047 if( $count == 1 ) {
00048 $text = $this->__('My Cart (%s item)', $count);
00049 } elseif( $count > 0 ) {
00050 $text = $this->__('My Cart (%s items)', $count);
00051 } else {
00052 $text = $this->__('My Cart');
00053 }
00054
00055 $parentBlock->addLink($text, 'checkout/cart', $text, true, array(), 50, null, 'class="top-link-cart"');
00056 }
00057 return $this;
00058 }
00059
00060
00061
00062
00063
00064
00065 public function addCheckoutLink()
00066 {
00067 if (!$this->helper('checkout')->canOnepageCheckout()) {
00068 return $this;
00069 }
00070 if ($parentBlock = $this->getParentBlock()) {
00071 $text = $this->__('Checkout');
00072 $parentBlock->addLink($text, 'checkout', $text, true, array(), 60, null, 'class="top-link-checkout"');
00073 }
00074 return $this;
00075 }
00076
00077 }