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
00035 class Mage_GiftMessage_Helper_Message extends Mage_Core_Helper_Data
00036 {
00037
00038
00039
00040
00041 const XPATH_CONFIG_GIFT_MESSAGE_ALLOW_ITEMS = 'sales/gift_messages/allow_items';
00042 const XPATH_CONFIG_GIFT_MESSAGE_ALLOW_ORDER = 'sales/gift_messages/allow_order';
00043
00044
00045
00046
00047
00048
00049 protected $_nextId = 0;
00050
00051
00052
00053
00054
00055
00056 protected $_innerCache = array();
00057
00058
00059
00060
00061
00062
00063
00064
00065 public function getButton($type, Varien_Object $entity)
00066 {
00067 if (!$this->isMessagesAvailable($type, $entity)) {
00068 return ' ';
00069 }
00070
00071 return Mage::getSingleton('core/layout')->createBlock('giftmessage/message_helper')
00072 ->setId('giftmessage_button_' . $this->_nextId++)
00073 ->setCanDisplayContainer(true)
00074 ->setEntity($entity)
00075 ->setType($type)->toHtml();
00076 }
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086 public function getInline($type, Varien_Object $entity, $dontDisplayContainer=false)
00087 {
00088 if (in_array($type, array('onepage_checkout','multishipping_adress'))) {
00089 if (!$this->isMessagesAvailable('items', $entity)) {
00090 return '';
00091 }
00092 } elseif (!$this->isMessagesAvailable($type, $entity)) {
00093 return '';
00094 }
00095
00096 return Mage::getSingleton('core/layout')->createBlock('giftmessage/message_inline')
00097 ->setId('giftmessage_form_' . $this->_nextId++)
00098 ->setDontDisplayContainer($dontDisplayContainer)
00099 ->setEntity($entity)
00100 ->setType($type)->toHtml();
00101 }
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111 public function isMessagesAvailable($type, Varien_Object $entity, $store=null)
00112 {
00113 $resultItems = Mage::getStoreConfig(self::XPATH_CONFIG_GIFT_MESSAGE_ALLOW_ITEMS, $store);
00114 $resultOrder = Mage::getStoreConfig(self::XPATH_CONFIG_GIFT_MESSAGE_ALLOW_ORDER, $store);
00115
00116 if ($type == 'items') {
00117 return $resultItems || $resultOrder;
00118 }
00119
00120 if (is_object($store)) {
00121 $storeId = $store->getId();
00122 } elseif (is_numeric($store)) {
00123 $storeId = $store;
00124 } else {
00125 $storeId = Mage::app()->getStore()->getId();
00126 }
00127
00128 if ($type=='item') {
00129 return $resultItems && $this->_getDependenceFromStoreConfig(
00130 $entity->getProduct()->getGiftMessageAvailable(),
00131 $store
00132 );
00133 } elseif ($type=='order_item') {
00134 return $resultItems && $this->_getDependenceFromStoreConfig(
00135 (is_null($entity->getGiftMessageAvailable()) ? 2 : $entity->getGiftMessageAvailable()),
00136 $store
00137 );
00138 } elseif ($type=='address_item') {
00139 if (!$resultItems) {
00140 return false;
00141 }
00142 if (!$this->isCached('address_item_' . $entity->getProductId())) {
00143 $this->setCached(
00144 'address_item_' . $entity->getProductId(),
00145 Mage::getModel('catalog/product')
00146 ->setStoreId($storeId)
00147 ->load($entity->getProductId())
00148 ->getGiftMessageAvailable()
00149 );
00150 }
00151 return $this->_getDependenceFromStoreConfig(
00152 $this->getCached('address_item_' . $entity->getProductId()),
00153 $store
00154 );
00155 } else {
00156 return $resultOrder;
00157 }
00158
00159 return false;
00160 }
00161
00162
00163
00164
00165
00166
00167
00168
00169 protected function _getDependenceFromStoreConfig($productGiftMessageAllow, $store=null)
00170 {
00171 $result = Mage::getStoreConfig(self::XPATH_CONFIG_GIFT_MESSAGE_ALLOW_ITEMS, $store);
00172
00173 if ($productGiftMessageAllow==2 || is_null($productGiftMessageAllow)) {
00174 return $result;
00175 } else {
00176 return $productGiftMessageAllow == 1;
00177 }
00178 }
00179
00180
00181
00182
00183
00184
00185
00186
00187
00188 public function getIsMessagesAvailable($type, Varien_Object $entity, $store=null)
00189 {
00190 return $this->isMessagesAvailable($type, $entity, $store);
00191 }
00192
00193
00194
00195
00196
00197
00198
00199 public function getEscapedGiftMessage(Varien_Object $entity)
00200 {
00201 $message = $this->getGiftMessageForEntity($entity);
00202 if ($message) {
00203 return nl2br($this->htmlEscape($message->getMessage()));
00204 }
00205 return null;
00206 }
00207
00208
00209
00210
00211
00212
00213
00214 public function getGiftMessageForEntity(Varien_Object $entity)
00215 {
00216 if($entity->getGiftMessageId() && !$entity->getGiftMessage()) {
00217 $message = $this->getGiftMessage($entity->getGiftMessageId());
00218 $entity->setGiftMessage($message);
00219 }
00220 return $entity->getGiftMessage();
00221 }
00222
00223
00224
00225
00226
00227
00228
00229
00230
00231 public function getCached($key)
00232 {
00233 if($this->isCached($key)) {
00234 return $this->_innerCache[$key];
00235 }
00236
00237 return null;
00238 }
00239
00240
00241
00242
00243
00244
00245
00246 public function isCached($key)
00247 {
00248 return isset($this->_innerCache[$key]);
00249 }
00250
00251
00252
00253
00254
00255
00256
00257
00258 public function setCached($key, $value)
00259 {
00260 $this->_innerCache[$key] = $value;
00261 return $this;
00262 }
00263
00264
00265
00266
00267
00268
00269
00270
00271 public function getAvailableForQuoteItems($quote, $store=null)
00272 {
00273 foreach($quote->getAllItems() as $item) {
00274 if($this->isMessagesAvailable('item', $item, $store)) {
00275 return true;
00276 }
00277 }
00278
00279 return false;
00280 }
00281
00282
00283
00284
00285
00286
00287
00288
00289 public function getAvailableForAddressItems($items, $store=null)
00290 {
00291 foreach($items as $item) {
00292 if($this->isMessagesAvailable('address_item', $item, $store)) {
00293 return true;
00294 }
00295 }
00296 return false;
00297 }
00298
00299
00300
00301
00302
00303
00304
00305 public function getGiftMessage($messageId=null)
00306 {
00307 $message = Mage::getModel('giftmessage/message');
00308 if(!is_null($messageId)) {
00309 $message->load($messageId);
00310 }
00311
00312 return $message;
00313 }
00314
00315 }