![]() 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-catalog/Model/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Catalog\Model; use Magento\Catalog\Api\Data\CategoryLinkExtensionInterface; use Magento\Catalog\Api\Data\CategoryLinkInterface; use Magento\Framework\Model\AbstractExtensibleModel; /** * @codeCoverageIgnore */ class CategoryLink extends AbstractExtensibleModel implements CategoryLinkInterface { public const KEY_POSITION = 'position'; public const KEY_CATEGORY_ID = 'category_id'; /** * @inheritdoc */ public function getPosition() { return $this->getData(self::KEY_POSITION); } /** * @inheritdoc */ public function getCategoryId() { return $this->getData(self::KEY_CATEGORY_ID); } /** * @inheritDoc * * @param int $position * @return $this */ public function setPosition($position) { return $this->setData(self::KEY_POSITION, $position); } /** * Set category id * * @param string $categoryId * @return $this */ public function setCategoryId($categoryId) { return $this->setData(self::KEY_CATEGORY_ID, $categoryId); } /** * @inheritdoc * * @return \Magento\Catalog\Api\Data\CategoryLinkExtensionInterface|null */ public function getExtensionAttributes() { return $this->_getExtensionAttributes(); } /** * @inheritdoc * * @param \Magento\Catalog\Api\Data\CategoryLinkExtensionInterface $extensionAttributes * @return $this */ public function setExtensionAttributes(CategoryLinkExtensionInterface $extensionAttributes) { return $this->_setExtensionAttributes($extensionAttributes); } }