![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/app/code/Smartwave/Dailydeals/Model/ResourceModel/ |
<?php namespace Smartwave\Dailydeals\Model\ResourceModel; class Dailydeal extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb { /** * Date time handler * * @var \Magento\Framework\Stdlib\DateTime */ protected $dateTime; /** * Date model * * @var \Magento\Framework\Stdlib\DateTime\DateTime */ protected $date; /** * constructor * * @param \Magento\Framework\Stdlib\DateTime $dateTime * @param \Magento\Framework\Stdlib\DateTime\DateTime $date * @param \Magento\Framework\Model\ResourceModel\Db\Context $context */ public function __construct( \Magento\Framework\Stdlib\DateTime $dateTime, \Magento\Framework\Stdlib\DateTime\DateTime $date, \Magento\Framework\Model\ResourceModel\Db\Context $context ) { $this->dateTime = $dateTime; $this->date = $date; parent::__construct($context); } /** * Initialize resource model * * @return void */ protected function _construct() { $this->_init('sw_dailydeals_dailydeal', 'dailydeal_id'); } /** * Retrieves Dailydeal Product Sku from DB by passed id. * * @param string $id * @return string|bool */ public function getDailydealSw_product_skuById($id) { $adapter = $this->getConnection(); $select = $adapter->select() ->from($this->getMainTable(), 'sw_product_sku') ->where('dailydeal_id = :dailydeal_id'); $binds = ['dailydeal_id' => (int)$id]; return $adapter->fetchOne($select, $binds); } /** * before save callback * * @param \Magento\Framework\Model\AbstractModel|\Smartwave\Dailydeals\Model\Dailydeal $object * @return $this */ protected function _beforeSave(\Magento\Framework\Model\AbstractModel $object) { $object->setUpdatedAt($this->date->date()); if ($object->isObjectNew()) { $object->setCreatedAt($this->date->date()); } foreach (['sw_date_from', 'sw_date_to'] as $field) { $value = !$object->getData($field) ? null : $object->getData($field); $object->setData($field, $this->dateTime->formatDate($value)); } return parent::_beforeSave($object); } }