![]() 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/extmag/shiplab/Model/ |
<?php /** * Copyright © Extmag. All rights reserved. */ namespace Extmag\Shiplab\Model; use Extmag\Shiplab\Api\Data\ConfigurationCountryInterface; use Magento\Framework\Model\AbstractModel; class ConfigurationCountry extends AbstractModel implements ConfigurationCountryInterface { /** * @inheritDoc */ public function getId() { return parent::getData(self::ENTITY_ID); } /** * @inheritDoc */ public function getTitle() { return parent::getData(self::TITLE); } /** * @inheritDoc */ public function getCreatedTime() { return parent::getData(self::CREATED_TIME); } /** * @inheritDoc */ public function getUpdateTime() { return parent::getData(self::UPDATED_TIME); } /** * @inheritDoc */ public function setId($value) { return $this->setData(self::ENTITY_ID, $value); } /** * @inheritDoc */ public function setTitle($title) { return $this->setData(self::TITLE, $title); } /** * @inheritDoc */ public function setCreatedTime($createdTime) { return $this->setData(self::CREATED_TIME, $createdTime); } /** * @inheritDoc */ public function setUpdateTime($updateTime) { return $this->setData(self::UPDATED_TIME, $updateTime); } /** * @inheritDoc */ public function getDirection() { return parent::getData(self::DIRECTION); } /** * @inheritDoc */ public function getCountriesIds() { return parent::getData(self::COUNTRIES_IDS); } /** * @inheritDoc */ public function setDirection($direction) { return $this->setData(self::DIRECTION, $direction); } /** * @inheritDoc */ public function setCountriesIds($countriesIds) { return $this->setData(self::COUNTRIES_IDS, $countriesIds); } /** * @inheritDoc */ protected function _construct() { parent::_construct(); $this->_init(ResourceModel\ConfigurationCountry::class); } }