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_Adminhtml_Block_Sales_Order_View_Giftmessage extends Mage_Adminhtml_Block_Widget
00035 {
00036
00037
00038
00039
00040
00041 protected $_entity;
00042
00043
00044
00045
00046
00047
00048 protected $_giftMessage;
00049
00050 protected function _beforeToHtml()
00051 {
00052 if ($this->getParentBlock() && ($order = $this->getParentBlock()->getOrder())) {
00053 $this->setEntity($order);
00054 }
00055 parent::_beforeToHtml();
00056 }
00057
00058
00059
00060
00061
00062
00063 protected function _prepareLayout()
00064 {
00065 $this->setChild('save_button',
00066 $this->getLayout()->createBlock('adminhtml/widget_button')
00067 ->setData(array(
00068 'label' => Mage::helper('giftmessage')->__('Save Gift Message'),
00069 'class' => 'save'
00070 ))
00071 );
00072
00073 return $this;
00074 }
00075
00076
00077
00078
00079
00080
00081 public function getSaveButtonHtml()
00082 {
00083 $this->getChild('save_button')->setOnclick(
00084 'giftMessagesController.saveGiftMessage(\''. $this->getHtmlId() .'\')'
00085 );
00086
00087 return $this->getChildHtml('save_button');
00088 }
00089
00090
00091
00092
00093
00094
00095
00096 public function setEntity(Varien_Object $entity)
00097 {
00098 $this->_entity = $entity;
00099 return $this;
00100 }
00101
00102
00103
00104
00105
00106
00107 public function getEntity()
00108 {
00109 if(is_null($this->_entity)) {
00110 $this->setEntity(Mage::getModel('giftmessage/message')->getEntityModelByType('order'));
00111 $this->getEntity()->load($this->getRequest()->getParam('entity'));
00112 }
00113 return $this->_entity;
00114 }
00115
00116
00117
00118
00119
00120
00121 public function getDefaultSender()
00122 {
00123 if(!$this->getEntity()) {
00124 return '';
00125 }
00126
00127 if($this->getEntity()->getOrder()) {
00128 return $this->getEntity()->getOrder()->getCustomerName();
00129 }
00130
00131 return $this->getEntity()->getCustomerName();
00132 }
00133
00134
00135
00136
00137
00138
00139 public function getDefaultRecipient()
00140 {
00141 if(!$this->getEntity()) {
00142 return '';
00143 }
00144
00145 if($this->getEntity()->getOrder()) {
00146 if ($this->getEntity()->getOrder()->getShippingAddress()) {
00147 return $this->getEntity()->getOrder()->getShippingAddress()->getName();
00148 } else if ($this->getEntity()->getOrder()->getBillingAddress()) {
00149 return $this->getEntity()->getOrder()->getBillingAddress()->getName();
00150 }
00151 }
00152
00153 if ($this->getEntity()->getShippingAddress()) {
00154 return $this->getEntity()->getShippingAddress()->getName();
00155 } else if ($this->getEntity()->getBillingAddress()) {
00156 return $this->getEntity()->getBillingAddress()->getName();
00157 }
00158
00159 return '';
00160 }
00161
00162
00163
00164
00165
00166
00167
00168 public function getFieldName($name)
00169 {
00170 return 'giftmessage[' . $this->getEntity()->getId() . '][' . $name . ']';
00171 }
00172
00173
00174
00175
00176
00177
00178
00179 public function getFieldId($id)
00180 {
00181 return $this->getFieldIdPrefix() . $id;
00182 }
00183
00184
00185
00186
00187
00188
00189 public function getFieldIdPrefix()
00190 {
00191 return 'giftmessage_order_' . $this->getEntity()->getId() . '_';
00192 }
00193
00194
00195
00196
00197
00198
00199 protected function _initMessage()
00200 {
00201 $this->_giftMessage = $this->helper('giftmessage/message')->getGiftMessage(
00202 $this->getEntity()->getGiftMessageId()
00203 );
00204
00205 // init default values for giftmessage form
00206 if(!$this->getMessage()->getSender()) {
00207 $this->getMessage()->setSender($this->getDefaultSender());
00208 }
00209 if(!$this->getMessage()->getRecipient()) {
00210 $this->getMessage()->setRecipient($this->getDefaultRecipient());
00211 }
00212
00213 return $this;
00214 }
00215
00216
00217
00218
00219
00220
00221 public function getMessage()
00222 {
00223 if(is_null($this->_giftMessage)) {
00224 $this->_initMessage();
00225 }
00226
00227 return $this->_giftMessage;
00228 }
00229
00230 public function getSaveUrl()
00231 {
00232 return $this->getUrl('*/sales_order_view_giftmessage/save',
00233 array(
00234 'entity'=>$this->getEntity()->getId(),
00235 'type' =>'order',
00236 'reload' => 1
00237 )
00238 );
00239 }
00240
00241
00242
00243
00244
00245
00246 public function getHtmlId()
00247 {
00248 return substr($this->getFieldIdPrefix(), 0, -1);
00249 }
00250
00251
00252
00253
00254
00255
00256 public function canDisplayGiftmessage()
00257 {
00258 return $this->helper('giftmessage/message')->getIsMessagesAvailable(
00259 'order', $this->getEntity(), $this->getEntity()->getStoreId()
00260 );
00261 }
00262
00263 }