芝麻web文件管理V1.00
编辑当前文件:/home/fambnfli/www/tr/wp-content/plugins/duplicator/src/Utils/Help/Category.php
id = $id; $this->name = $name; $this->articleCount = $articleCount; } /** * Get the ID * * @return int */ public function getId() { return $this->id; } /** * Get the Name * * @return string */ public function getName() { return $this->name; } /** * Get the Article Count * * @return int */ public function getArticleCount() { return $this->articleCount; } /** * Get the Children * * @return Category[] */ public function getChildren() { return $this->children; } /** * Add a child * * @param Category $child The child * * @return void */ public function addChild(Category $child) { if (isset($this->children[$child->getId()])) { return; } $this->children[$child->getId()] = $child; } /** * Get the Parent * * @return Category|null */ public function getParent() { return $this->parent; } /** * Set the Parent * * @param Category $parent The parent * * @return void */ public function setParent(Category $parent) { $this->parent = $parent; } }