| Current Path : /home/rtorresani/www/vendor/magento/module-sales/Model/Order/Shipment/ |
| Current File : //home/rtorresani/www/vendor/magento/module-sales/Model/Order/Shipment/Comment.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Sales\Model\Order\Shipment;
use Magento\Framework\Api\AttributeValueFactory;
use Magento\Sales\Api\Data\ShipmentCommentInterface;
use Magento\Sales\Model\AbstractModel;
class Comment extends AbstractModel implements ShipmentCommentInterface
{
/**
* Shipment instance
*
* @var \Magento\Sales\Model\Order\Shipment
*/
protected $_shipment;
/**
* @var \Magento\Store\Model\StoreManagerInterface
*/
protected $_storeManager;
/**
* @param \Magento\Framework\Model\Context $context
* @param \Magento\Framework\Registry $registry
* @param \Magento\Framework\Api\ExtensionAttributesFactory $extensionFactory
* @param AttributeValueFactory $customAttributeFactory
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
* @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource
* @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection
* @param array $data
* @SuppressWarnings(PHPMD.ExcessiveParameterList)
*/
public function __construct(
\Magento\Framework\Model\Context $context,
\Magento\Framework\Registry $registry,
\Magento\Framework\Api\ExtensionAttributesFactory $extensionFactory,
AttributeValueFactory $customAttributeFactory,
\Magento\Store\Model\StoreManagerInterface $storeManager,
\Magento\Framework\Model\ResourceModel\AbstractResource $resource = null,
\Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null,
array $data = []
) {
parent::__construct(
$context,
$registry,
$extensionFactory,
$customAttributeFactory,
$resource,
$resourceCollection,
$data
);
$this->_storeManager = $storeManager;
}
/**
* Initialize resource model
*
* @return void
*/
protected function _construct()
{
$this->_init(\Magento\Sales\Model\ResourceModel\Order\Shipment\Comment::class);
}
/**
* Declare Shipment instance
*
* @codeCoverageIgnore
*
* @param \Magento\Sales\Model\Order\Shipment $shipment
* @return $this
*/
public function setShipment(\Magento\Sales\Model\Order\Shipment $shipment)
{
$this->_shipment = $shipment;
return $this;
}
/**
* Retrieve Shipment instance
*
* @codeCoverageIgnore
*
* @return \Magento\Sales\Model\Order\Shipment
*/
public function getShipment()
{
return $this->_shipment;
}
/**
* Get store object
*
* @return \Magento\Store\Model\Store
*/
public function getStore()
{
if ($this->getShipment()) {
return $this->getShipment()->getStore();
}
return $this->_storeManager->getStore();
}
//@codeCoverageIgnoreStart
/**
* Returns comment
*
* @return string
*/
public function getComment()
{
return $this->getData(ShipmentCommentInterface::COMMENT);
}
/**
* Returns created_at
*
* @return string
*/
public function getCreatedAt()
{
return $this->getData(ShipmentCommentInterface::CREATED_AT);
}
/**
* {@inheritdoc}
*/
public function setCreatedAt($createdAt)
{
return $this->setData(ShipmentCommentInterface::CREATED_AT, $createdAt);
}
/**
* Returns is_customer_notified
*
* @return int
*/
public function getIsCustomerNotified()
{
return $this->getData(ShipmentCommentInterface::IS_CUSTOMER_NOTIFIED);
}
/**
* Returns is_visible_on_front
*
* @return int
*/
public function getIsVisibleOnFront()
{
return $this->getData(ShipmentCommentInterface::IS_VISIBLE_ON_FRONT);
}
/**
* Returns parent_id
*
* @return int
*/
public function getParentId()
{
return $this->getData(ShipmentCommentInterface::PARENT_ID);
}
/**
* {@inheritdoc}
*/
public function setParentId($id)
{
return $this->setData(ShipmentCommentInterface::PARENT_ID, $id);
}
/**
* {@inheritdoc}
*/
public function setIsCustomerNotified($isCustomerNotified)
{
return $this->setData(ShipmentCommentInterface::IS_CUSTOMER_NOTIFIED, $isCustomerNotified);
}
/**
* {@inheritdoc}
*/
public function setIsVisibleOnFront($isVisibleOnFront)
{
return $this->setData(ShipmentCommentInterface::IS_VISIBLE_ON_FRONT, $isVisibleOnFront);
}
/**
* {@inheritdoc}
*/
public function setComment($comment)
{
return $this->setData(ShipmentCommentInterface::COMMENT, $comment);
}
/**
* {@inheritdoc}
*
* @return \Magento\Sales\Api\Data\ShipmentCommentExtensionInterface|null
*/
public function getExtensionAttributes()
{
return $this->_getExtensionAttributes();
}
/**
* {@inheritdoc}
*
* @param \Magento\Sales\Api\Data\ShipmentCommentExtensionInterface $extensionAttributes
* @return $this
*/
public function setExtensionAttributes(
\Magento\Sales\Api\Data\ShipmentCommentExtensionInterface $extensionAttributes
) {
return $this->_setExtensionAttributes($extensionAttributes);
}
//@codeCoverageIgnoreEnd
}