Spamworldpro Mini Shell
Spamworldpro


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/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/vendor/extmag/shiplab/Model/DimensionBox.php
<?php
/**
 * Copyright © Extmag. All rights reserved.
 */

namespace Extmag\Shiplab\Model;

use Extmag\Shiplab\Api\Data\DimensionBoxInterface;
use Magento\Framework\Model\AbstractModel;

class DimensionBox extends AbstractModel implements DimensionBoxInterface
{
    /**
     * @inheritDoc
     */
    protected function _construct()
    {
        parent::_construct();
        $this->_init(ResourceModel\DimensionBox::class);
    }
    /**
     * @inheritDoc
     */
    public function getId()
    {
        return parent::getData(self::ENTITY_ID);
    }
    /**
     * @inheritDoc
     */
    public function setId($value)
    {
        return $this->setData(self::ENTITY_ID, $value);
    }

    /**
     * @inheritDoc
     */
    public function getTitle()
    {
        return parent::getData(self::TITLE);
    }
    /**
     * @inheritDoc
     */
    public function setTitle($title)
    {
        return $this->setData(self::TITLE, $title);
    }

    /**
     * @inheritDoc
     */
    public function getCreatedTime()
    {
        return parent::getData(self::CREATED_TIME);
    }
    /**
     * @inheritDoc
     */
    public function setCreatedTime($createdTime)
    {
        return $this->setData(self::CREATED_TIME, $createdTime);
    }

    /**
     * @inheritDoc
     */
    public function getUpdateTime()
    {
        return parent::getData(self::UPDATED_TIME);
    }
    /**
     * @inheritDoc
     */
    public function setUpdateTime($updateTime)
    {
        return $this->setData(self::UPDATED_TIME, $updateTime);
    }

    /**
     * @inheritDoc
     */
    public function getUnitWeight()
    {
        return parent::getData(self::UNIT_WEIGHT);
    }
    /**
     * @inheritDoc
     */
    public function setUnitWeight($unitWeight)
    {
        return $this->setData(self::UNIT_WEIGHT, $unitWeight);
    }

    /**
     * @inheritDoc
     */
    public function getUnitDimension()
    {
        return parent::getData(self::UNIT_DIMENSION);
    }
    /**
     * @inheritDoc
     */
    public function setUnitDimension($unitDimension)
    {
        return $this->setData(self::UNIT_DIMENSION, $unitDimension);
    }

    /**
     * @inheritDoc
     */
    public function getMaxWeight()
    {
        return parent::getData(self::MAX_WEIGHT);
    }
    /**
     * @inheritDoc
     */
    public function setMaxWeight($maxWeight)
    {
        return $this->setData(self::MAX_WEIGHT, $maxWeight);
    }

    /**
     * @inheritDoc
     */
    public function getEmptyWeight()
    {
        return parent::getData(self::EMPTY_WEIGHT);
    }
    /**
     * @inheritDoc
     */
    public function setEmptyWeight($emptyWeight)
    {
        return $this->setData(self::EMPTY_WEIGHT, $emptyWeight);
    }

    /**
     * @inheritDoc
     */
    public function getWidth()
    {
        return parent::getData(self::WIDTH);
    }
    /**
     * @inheritDoc
     */
    public function setWidth($width)
    {
        return $this->setData(self::WIDTH, $width);
    }

    /**
     * @inheritDoc
     */
    public function getLength()
    {
        return parent::getData(self::LENGTH);
    }
    /**
     * @inheritDoc
     */
    public function setLength($length)
    {
        return $this->setData(self::LENGTH, $length);
    }

    /**
     * @inheritDoc
     */
    public function getHeight()
    {
        return parent::getData(self::HEIGHT);
    }
    /**
     * @inheritDoc
     */
    public function setHeight($height)
    {
        return $this->setData(self::HEIGHT, $height);
    }

    /**
     * @inheritDoc
     */
    public function getOuterWidth()
    {
        return parent::getData(self::OUTER_WIDTH);
    }
    /**
     * @inheritDoc
     */
    public function setOuterWidth($outerWidth)
    {
        return $this->setData(self::OUTER_WIDTH, $outerWidth);
    }

    /**
     * @inheritDoc
     */
    public function getOuterLength()
    {
        return parent::getData(self::OUTER_LENGTH);
    }
    /**
     * @inheritDoc
     */
    public function setOuterLength($outerLength)
    {
        return $this->setData(self::OUTER_LENGTH, $outerLength);
    }

    /**
     * @inheritDoc
     */
    public function getOuterHeight()
    {
        return parent::getData(self::OUTER_HEIGHT);
    }
    /**
     * @inheritDoc
     */
    public function setOuterHeight($outerHeight)
    {
        return $this->setData(self::OUTER_HEIGHT, $outerHeight);
    }

    /**
     * @inheritDoc
     */
    public function getQty()
    {
        return parent::getData(self::QTY);
    }
    /**
     * @inheritDoc
     */
    public function setQty($qty)
    {
        return $this->setData(self::QTY, $qty);
    }

    /**
     * @inheritDoc
     */
    public function getIsUsedDimensions()
    {
        return parent::getData(self::IS_USED_DIMENSIONS);
    }

    /**
     * @inheritDoc
     */
    public function setIsUsedDimensions($isUsedDimensions)
    {
        return $this->setData(self::IS_USED_DIMENSIONS, $isUsedDimensions);
    }
}

Spamworldpro Mini