![]() 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/old/vendor/magento/module-admin-notification/Model/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\AdminNotification\Model; use Magento\Framework\Notification\MessageInterface; use Magento\Framework\Notification\NotifierInterface; use Magento\AdminNotification\Model\InboxInterface; /** * AdminNotification Inbox model * * @method int getSeverity() * @method \Magento\AdminNotification\Model\Inbox setSeverity(int $value) * @method string getDateAdded() * @method \Magento\AdminNotification\Model\Inbox setDateAdded(string $value) * @method string getTitle() * @method \Magento\AdminNotification\Model\Inbox setTitle(string $value) * @method string getDescription() * @method \Magento\AdminNotification\Model\Inbox setDescription(string $value) * @method string getUrl() * @method \Magento\AdminNotification\Model\Inbox setUrl(string $value) * @method int getIsRead() * @method \Magento\AdminNotification\Model\Inbox setIsRead(int $value) * @method int getIsRemove() * @method \Magento\AdminNotification\Model\Inbox setIsRemove(int $value) * * @api * @since 100.0.2 */ class Inbox extends \Magento\Framework\Model\AbstractModel implements NotifierInterface, InboxInterface { /** * @return void */ protected function _construct() { $this->_init(\Magento\AdminNotification\Model\ResourceModel\Inbox::class); } /** * {@inheritdoc} */ public function getSeverities($severity = null) { $severities = [ MessageInterface::SEVERITY_CRITICAL => __('critical'), MessageInterface::SEVERITY_MAJOR => __('major'), MessageInterface::SEVERITY_MINOR => __('minor'), MessageInterface::SEVERITY_NOTICE => __('notice'), ]; if ($severity !== null) { if (isset($severities[$severity])) { return $severities[$severity]; } return null; } return $severities; } /** * {@inheritdoc} */ public function loadLatestNotice() { $this->setData([]); $this->getResource()->loadLatestNotice($this); return $this; } /** * {@inheritdoc} */ public function getNoticeStatus() { return $this->getResource()->getNoticeStatus($this); } /** * Parse and save new data * * @param array $data * @return $this */ public function parse(array $data) { $this->getResource()->parse($this, $data); return $this; } /** * Add new message * * @param int $severity * @param string $title * @param string|string[] $description * @param string $url * @param bool $isInternal * @throws \Magento\Framework\Exception\LocalizedException * @return $this */ public function add($severity, $title, $description, $url = '', $isInternal = true) { if (!$this->getSeverities($severity)) { throw new \Magento\Framework\Exception\LocalizedException(__('Wrong message type')); } if (is_array($description)) { $description = '<ul><li>' . implode('</li><li>', $description) . '</li></ul>'; } $date = date('Y-m-d H:i:s'); $this->parse( [ [ 'severity' => $severity, 'date_added' => $date, 'title' => $title, 'description' => $description, 'url' => $url, 'internal' => $isInternal, ], ] ); return $this; } /** * Add critical severity message * * @param string $title * @param string|string[] $description * @param string $url * @param bool $isInternal * @return $this */ public function addCritical($title, $description, $url = '', $isInternal = true) { $this->add(MessageInterface::SEVERITY_CRITICAL, $title, $description, $url, $isInternal); return $this; } /** * Add major severity message * * @param string $title * @param string|string[] $description * @param string $url * @param bool $isInternal * @return $this */ public function addMajor($title, $description, $url = '', $isInternal = true) { $this->add(MessageInterface::SEVERITY_MAJOR, $title, $description, $url, $isInternal); return $this; } /** * Add minor severity message * * @param string $title * @param string|string[] $description * @param string $url * @param bool $isInternal * @return $this */ public function addMinor($title, $description, $url = '', $isInternal = true) { $this->add(MessageInterface::SEVERITY_MINOR, $title, $description, $url, $isInternal); return $this; } /** * Add notice * * @param string $title * @param string|string[] $description * @param string $url * @param bool $isInternal * @return $this */ public function addNotice($title, $description, $url = '', $isInternal = true) { $this->add(MessageInterface::SEVERITY_NOTICE, $title, $description, $url, $isInternal); return $this; } }