![]() 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/Amasty/Label/Model/Label/Parts/ |
<?php declare(strict_types=1); /** * @author Amasty Team * @copyright Copyright (c) Amasty (https://www.amasty.com) * @package Product Labels for Magento 2 */ namespace Amasty\Label\Model\Label\Parts; use Amasty\Label\Api\Data\LabelTooltipInterface; use Magento\Framework\Model\AbstractExtensibleModel; class LabelTooltip extends AbstractExtensibleModel implements LabelTooltipInterface { public function getStatus(): int { return (int) $this->_getData(self::STATUS); } public function setStatus(int $status): void { $this->setData(self::STATUS, $status); } public function getColor(): ?string { return $this->_getData(self::COLOR); } public function setColor(string $color): void { $this->setData(self::COLOR, $color); } public function getTextColor(): ?string { return $this->_getData(self::TEXT_COLOR); } public function setTextColor(string $textColor): void { $this->setData(self::TEXT_COLOR, $textColor); } public function getText(): ?string { return $this->_getData(self::TEXT); } public function setText(string $text): void { $this->setData(self::TEXT, $text); } }