芝麻web文件管理V1.00
编辑当前文件:/home/fambnfli/www/tr/wp-content/plugins/duplicator/src/Utils/Help/Article.php
id = $id; $this->title = $title; $this->link = $link; $this->categories = $categories; $this->tags = $tags; } /** * Get the Title * * @return string */ public function getTitle() { return $this->title; } /** * Get the Link * * @return string */ public function getLink() { return $this->link; } /** * Get the Categories * * @return int[] */ public function getCategories() { return $this->categories; } /** * Get the Tags * * @return string[] */ public function getTags() { return $this->tags; } /** * Get the ID * * @return int */ public function getId() { return $this->id; } }