![]() 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/Api/Data/ |
<?php /** * * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api\Data; /** * @api * @since 100.0.2 */ interface CategoryTreeInterface { /** * @return int|null */ public function getId(); /** * @param int $id * @return $this */ public function setId($id); /** * Get parent category ID * * @return int */ public function getParentId(); /** * Set parent category ID * * @param int $parentId * @return $this */ public function setParentId($parentId); /** * Get category name * * @return string */ public function getName(); /** * Set category name * * @param string $name * @return $this */ public function setName($name); /** * Check whether category is active * * @return bool * @SuppressWarnings(PHPMD.BooleanGetMethodName) */ public function getIsActive(); /** * Set whether category is active * * @param bool $isActive * @return $this */ public function setIsActive($isActive); /** * Get category position * * @return int */ public function getPosition(); /** * Set category position * * @param int $position * @return $this */ public function setPosition($position); /** * Get category level * * @return int */ public function getLevel(); /** * Set category level * * @param int $level * @return $this */ public function setLevel($level); /** * Get product count * * @return int */ public function getProductCount(); /** * Set product count * * @param int $productCount * @return $this */ public function setProductCount($productCount); /** * @return \Magento\Catalog\Api\Data\CategoryTreeInterface[] */ public function getChildrenData(); /** * @param \Magento\Catalog\Api\Data\CategoryTreeInterface[] $childrenData * @return $this */ public function setChildrenData(array $childrenData = null); }