|
Apache/2.4.41 (Ubuntu) Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) server ip : 62.171.164.128 | your ip : 127.0.0.1 safemode OFF > / home / dev2.destoffenstraat.com / app / code / Bss / Popup / Controller / Render / |
Filename | /home/dev2.destoffenstraat.com/app/code/Bss/Popup/Controller/Render/Time.php |
Size | 3.62 kb |
Permission | rwxrwxrwx |
Owner | root : root |
Create time | 17-Aug-2025 10:26 |
Last modified | 06-Apr-2021 18:06 |
Last accessed | 22-Aug-2025 11:17 |
Actions | edit | rename | delete | download (gzip) |
View | text | code | image |
<?php
/**
* BSS Commerce Co.
*
* NOTICE OF LICENSE
*
* This source file is subject to the EULA
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://bsscommerce.com/Bss-Commerce-License.txt
*
* @category BSS
* @package Bss_Popup
* @author Extension Team
* @copyright Copyright (c) 2018-2019 BSS Commerce Co. ( http://bsscommerce.com )
* @license http://bsscommerce.com/Bss-Commerce-License.txt
*/
namespace Bss\Popup\Controller\Render;
class Time extends \Magento\Framework\App\Action\Action
{
/**
* Result Json Factory
*
* @var \Magento\Framework\Controller\Result\JsonFactory
*/
protected $resultJsonFactory;
/**
* Popup Factory
*
* @var \Bss\Popup\Model\PopupFactory
*/
protected $popupFactory;
/**
* Helper
*
* @var \Bss\Popup\Helper\Data
*/
protected $helper;
/**
* Date Time
*
* @var \Magento\Framework\Stdlib\DateTime\TimezoneInterface
*/
protected $datetime;
/**
* Time constructor.
* @param \Magento\Framework\Stdlib\DateTime\TimezoneInterface $datetime
* @param \Bss\Popup\Helper\Data $helper
* @param \Bss\Popup\Model\PopupFactory $popupFactory
* @param \Magento\Framework\Controller\Result\JsonFactory $resultJsonFactory
* @param \Magento\Backend\App\Action\Context $context
*/
public function __construct(
\Magento\Framework\Stdlib\DateTime\TimezoneInterface $datetime,
\Bss\Popup\Helper\Data $helper,
\Bss\Popup\Model\PopupFactory $popupFactory,
\Magento\Framework\Controller\Result\JsonFactory $resultJsonFactory,
\Magento\Backend\App\Action\Context $context
) {
$this->datetime = $datetime;
$this->popupFactory = $popupFactory;
$this->helper = $helper;
$this->resultJsonFactory = $resultJsonFactory;
parent::__construct($context);
}
/**
* @return \Magento\Framework\App\ResponseInterface|\Magento\Framework\Controller\Result\Json|\Magento\Framework\Controller\ResultInterface
*/
public function execute()
{
if ($this->getRequest()->isXmlHttpRequest()) {
$popupId = $this->getRequest()->getPost('popupId');
$result['res'] = false;
if ($popupId) {
$popup = $this->popupFactory->create()->load($popupId);
if ($this->isResultRes($popup)) {
$result['res'] = true;
}
} else {
$result['res'] = false;
}
/** @var \Magento\Framework\Controller\Result\Json $response */
$response = $this->resultJsonFactory->create()->setData($result);
return $response;
} else {
$resultRedirect = $this->resultFactory->create(\Magento\Framework\Controller\ResultFactory::TYPE_REDIRECT);
return $resultRedirect->setPath('no-route');
}
}
/**
* @param $popup
* @return bool
*/
protected function isResultRes($popup)
{
$date = $this->datetime->date()->format('Y-m-d H:i:s');
$startTime = $popup->getData('display_from');
$endTime = $popup->getData('display_to');
if ($this->helper->popupIsAllowedDisplay($popup->getData())) {
if ((($startTime) !== null && $startTime <= $date) ||
(($endTime) !== null && $endTime >= $date)
) {
return true;
} elseif ($startTime === null || $endTime === null) {
return true;
}
}
return false;
}
}
/**
* BSS Commerce Co.
*
* NOTICE OF LICENSE
*
* This source file is subject to the EULA
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://bsscommerce.com/Bss-Commerce-License.txt
*
* @category BSS
* @package Bss_Popup
* @author Extension Team
* @copyright Copyright (c) 2018-2019 BSS Commerce Co. ( http://bsscommerce.com )
* @license http://bsscommerce.com/Bss-Commerce-License.txt
*/
namespace Bss\Popup\Controller\Render;
class Time extends \Magento\Framework\App\Action\Action
{
/**
* Result Json Factory
*
* @var \Magento\Framework\Controller\Result\JsonFactory
*/
protected $resultJsonFactory;
/**
* Popup Factory
*
* @var \Bss\Popup\Model\PopupFactory
*/
protected $popupFactory;
/**
* Helper
*
* @var \Bss\Popup\Helper\Data
*/
protected $helper;
/**
* Date Time
*
* @var \Magento\Framework\Stdlib\DateTime\TimezoneInterface
*/
protected $datetime;
/**
* Time constructor.
* @param \Magento\Framework\Stdlib\DateTime\TimezoneInterface $datetime
* @param \Bss\Popup\Helper\Data $helper
* @param \Bss\Popup\Model\PopupFactory $popupFactory
* @param \Magento\Framework\Controller\Result\JsonFactory $resultJsonFactory
* @param \Magento\Backend\App\Action\Context $context
*/
public function __construct(
\Magento\Framework\Stdlib\DateTime\TimezoneInterface $datetime,
\Bss\Popup\Helper\Data $helper,
\Bss\Popup\Model\PopupFactory $popupFactory,
\Magento\Framework\Controller\Result\JsonFactory $resultJsonFactory,
\Magento\Backend\App\Action\Context $context
) {
$this->datetime = $datetime;
$this->popupFactory = $popupFactory;
$this->helper = $helper;
$this->resultJsonFactory = $resultJsonFactory;
parent::__construct($context);
}
/**
* @return \Magento\Framework\App\ResponseInterface|\Magento\Framework\Controller\Result\Json|\Magento\Framework\Controller\ResultInterface
*/
public function execute()
{
if ($this->getRequest()->isXmlHttpRequest()) {
$popupId = $this->getRequest()->getPost('popupId');
$result['res'] = false;
if ($popupId) {
$popup = $this->popupFactory->create()->load($popupId);
if ($this->isResultRes($popup)) {
$result['res'] = true;
}
} else {
$result['res'] = false;
}
/** @var \Magento\Framework\Controller\Result\Json $response */
$response = $this->resultJsonFactory->create()->setData($result);
return $response;
} else {
$resultRedirect = $this->resultFactory->create(\Magento\Framework\Controller\ResultFactory::TYPE_REDIRECT);
return $resultRedirect->setPath('no-route');
}
}
/**
* @param $popup
* @return bool
*/
protected function isResultRes($popup)
{
$date = $this->datetime->date()->format('Y-m-d H:i:s');
$startTime = $popup->getData('display_from');
$endTime = $popup->getData('display_to');
if ($this->helper->popupIsAllowedDisplay($popup->getData())) {
if ((($startTime) !== null && $startTime <= $date) ||
(($endTime) !== null && $endTime >= $date)
) {
return true;
} elseif ($startTime === null || $endTime === null) {
return true;
}
}
return false;
}
}