| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/a/w/e/awebpaca/boutiques/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/ |
Upload File : |
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category Mage
* @package Mage_Adminhtml
* @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
/**
* Edit order giftmessage block
*
* @category Mage
* @package Mage_Adminhtml
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Adminhtml_Block_Sales_Order_View_Giftmessage extends Mage_Adminhtml_Block_Widget
{
/**
* Entity for editing of gift message
*
* @var Mage_Eav_Model_Entity_Abstract
*/
protected $_entity;
/**
* Giftmessage object
*
* @var Mage_GiftMessage_Model_Message
*/
protected $_giftMessage;
protected function _beforeToHtml()
{
if ($this->getParentBlock() && ($order = $this->getParentBlock()->getOrder())) {
$this->setEntity($order);
}
parent::_beforeToHtml();
}
/**
* Prepares layout of block
*
* @return Mage_Adminhtml_Block_Sales_Order_View_Giftmessage
*/
protected function _prepareLayout()
{
$this->setChild('save_button',
$this->getLayout()->createBlock('adminhtml/widget_button')
->setData(array(
'label' => Mage::helper('giftmessage')->__('Save Gift Message'),
'class' => 'save'
))
);
return $this;
}
/**
* Retrive save button html
*
* @return string
*/
public function getSaveButtonHtml()
{
$this->getChild('save_button')->setOnclick(
'giftMessagesController.saveGiftMessage(\''. $this->getHtmlId() .'\')'
);
return $this->getChildHtml('save_button');
}
/**
* Set entity for form
*
* @param Varien_Object $entity
* @return Mage_Adminhtml_Block_Sales_Order_View_Giftmessage
*/
public function setEntity(Varien_Object $entity)
{
$this->_entity = $entity;
return $this;
}
/**
* Retrive entity for form
*
* @return Varien_Object
*/
public function getEntity()
{
if(is_null($this->_entity)) {
$this->setEntity(Mage::getModel('giftmessage/message')->getEntityModelByType('order'));
$this->getEntity()->load($this->getRequest()->getParam('entity'));
}
return $this->_entity;
}
/**
* Retrive default value for giftmessage sender
*
* @return string
*/
public function getDefaultSender()
{
if(!$this->getEntity()) {
return '';
}
if($this->getEntity()->getOrder()) {
return $this->getEntity()->getOrder()->getCustomerName();
}
return $this->getEntity()->getCustomerName();
}
/**
* Retrive default value for giftmessage recipient
*
* @return string
*/
public function getDefaultRecipient()
{
if(!$this->getEntity()) {
return '';
}
if($this->getEntity()->getOrder()) {
if ($this->getEntity()->getOrder()->getShippingAddress()) {
return $this->getEntity()->getOrder()->getShippingAddress()->getName();
} else if ($this->getEntity()->getOrder()->getBillingAddress()) {
return $this->getEntity()->getOrder()->getBillingAddress()->getName();
}
}
if ($this->getEntity()->getShippingAddress()) {
return $this->getEntity()->getShippingAddress()->getName();
} else if ($this->getEntity()->getBillingAddress()) {
return $this->getEntity()->getBillingAddress()->getName();
}
return '';
}
/**
* Retrive real name for field
*
* @param string $name
* @return string
*/
public function getFieldName($name)
{
return 'giftmessage[' . $this->getEntity()->getId() . '][' . $name . ']';
}
/**
* Retrive real html id for field
*
* @param string $name
* @return string
*/
public function getFieldId($id)
{
return $this->getFieldIdPrefix() . $id;
}
/**
* Retrive field html id prefix
*
* @return string
*/
public function getFieldIdPrefix()
{
return 'giftmessage_order_' . $this->getEntity()->getId() . '_';
}
/**
* Initialize gift message for entity
*
* @return Mage_Adminhtml_Block_Sales_Order_View_Giftmessage
*/
protected function _initMessage()
{
$this->_giftMessage = $this->helper('giftmessage/message')->getGiftMessage(
$this->getEntity()->getGiftMessageId()
);
// init default values for giftmessage form
if(!$this->getMessage()->getSender()) {
$this->getMessage()->setSender($this->getDefaultSender());
}
if(!$this->getMessage()->getRecipient()) {
$this->getMessage()->setRecipient($this->getDefaultRecipient());
}
return $this;
}
/**
* Retrive gift message for entity
*
* @return Mage_GiftMessage_Model_Message
*/
public function getMessage()
{
if(is_null($this->_giftMessage)) {
$this->_initMessage();
}
return $this->_giftMessage;
}
public function getSaveUrl()
{
return $this->getUrl('*/sales_order_view_giftmessage/save',
array(
'entity'=>$this->getEntity()->getId(),
'type' =>'order',
'reload' => 1
)
);
}
/**
* Retrive block html id
*
* @return string
*/
public function getHtmlId()
{
return substr($this->getFieldIdPrefix(), 0, -1);
}
/**
* Indicates that block can display giftmessages form
*
* @return boolean
*/
public function canDisplayGiftmessage()
{
return $this->helper('giftmessage/message')->getIsMessagesAvailable(
'order', $this->getEntity(), $this->getEntity()->getStoreId()
);
}
}