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 class Mage_Catalog_Helper_Product extends Mage_Core_Helper_Url
00033 {
00034 const XML_PATH_PRODUCT_URL_SUFFIX = 'catalog/seo/product_url_suffix';
00035
00036
00037
00038
00039
00040
00041 protected $_productUrlSuffix = array();
00042
00043 protected $_statuses;
00044
00045 protected $_priceBlock;
00046
00047
00048
00049
00050
00051
00052
00053 public function getProductUrl($product)
00054 {
00055 if ($product instanceof Mage_Catalog_Model_Product) {
00056 return $product->getProductUrl();
00057 }
00058 elseif (is_numeric($product)) {
00059 return Mage::getModel('catalog/product')->load($product)->getProductUrl();
00060 }
00061 return false;
00062 }
00063
00064
00065
00066
00067
00068
00069
00070 public function getPrice($product)
00071 {
00072 return $product->getPrice();
00073 }
00074
00075
00076
00077
00078
00079
00080
00081 public function getFinalPrice($product)
00082 {
00083 return $product->getFinalPrice();
00084 }
00085
00086
00087
00088
00089
00090
00091 public function getImageUrl($product)
00092 {
00093 $url = false;
00094 if (!$product->getImage()) {
00095 $url = Mage::getDesign()->getSkinUrl('images/no_image.jpg');
00096 }
00097 elseif ($attribute = $product->getResource()->getAttribute('image')) {
00098 $url = $attribute->getFrontend()->getUrl($product);
00099 }
00100 return $url;
00101 }
00102
00103
00104
00105
00106
00107
00108 public function getSmallImageUrl($product)
00109 {
00110 $url = false;
00111 if (!$product->getSmallImage()) {
00112 $url = Mage::getDesign()->getSkinUrl('images/no_image.jpg');
00113 }
00114 elseif ($attribute = $product->getResource()->getAttribute('small_image')) {
00115 $url = $attribute->getFrontend()->getUrl($product);
00116 }
00117 return $url;
00118 }
00119
00120
00121
00122
00123
00124
00125 public function getThumbnailUrl($product)
00126 {
00127 return '';
00128 }
00129
00130 public function getEmailToFriendUrl($product)
00131 {
00132 $categoryId = null;
00133 if ($category = Mage::registry('current_category')) {
00134 $categoryId = $category->getId();
00135 }
00136 return $this->_getUrl('sendfriend/product/send', array(
00137 'id' => $product->getId(),
00138 'cat_id' => $categoryId
00139 ));
00140 }
00141
00142 public function getStatuses()
00143 {
00144 if(is_null($this->_statuses)) {
00145 $this->_statuses = array();
00146 }
00147
00148 return $this->_statuses;
00149 }
00150
00151
00152
00153
00154
00155
00156
00157 public function canShow($product, $where = 'catalog')
00158 {
00159 if (is_int($product)) {
00160 $product = Mage::getModel('catalog/product')->load($product);
00161 }
00162
00163
00164
00165 if (!$product->getId()) {
00166 return false;
00167 }
00168
00169 return $product->isVisibleInCatalog() && $product->isVisibleInSiteVisibility();
00170 }
00171
00172
00173
00174
00175
00176
00177
00178 public function getProductUrlSuffix($storeId = null)
00179 {
00180 if (is_null($storeId)) {
00181 $storeId = Mage::app()->getStore()->getId();
00182 }
00183
00184 if (!isset($this->_productUrlSuffix[$storeId])) {
00185 $this->_productUrlSuffix[$storeId] = Mage::getStoreConfig(self::XML_PATH_PRODUCT_URL_SUFFIX, $storeId);
00186 }
00187 return $this->_productUrlSuffix[$storeId];
00188 }
00189 }