id; } /** * Set name * * @param string $name * * @return CMSInfo */ public function setName($name) { $this->name = $name; return $this; } /** * Get name * * @return string */ public function getName() { return $this->name; } /** * Set slug * * @param string $slug * * @return CMSInfo */ public function setSlug($slug) { $this->slug = $slug; return $this; } /** * Get slug * * @return string */ public function getSlug() { return $this->slug; } /** * Set type * * @param string $type * * @return CMSInfo */ public function setType($type) { $this->type = $type; return $this; } /** * Get type * * @return string */ public function getType() { return $this->type; } /** * Set text * * @param string $text * * @return CMSInfo */ public function setText($text) { $this->text = $text; return $this; } /** * Get text * * @return string */ public function getText() { return $this->text; } /** * Set fullText * * @param string $fullText * * @return CMSInfo */ public function setFullText($fullText) { $this->fullText = $fullText; return $this; } /** * Get fullText * * @return string */ public function getFullText() { return $this->fullText; } /** * Set integer * * @param integer $integer * * @return CMSInfo */ public function setInteger($integer) { $this->integer = $integer; return $this; } /** * Get integer * * @return int */ public function getInteger() { return $this->integer; } /** * Set decimal * * @param string $decimal * * @return CMSInfo */ public function setDecimal($decimal) { $this->decimal = $decimal; return $this; } /** * Get decimal * * @return string */ public function getDecimal() { return $this->decimal; } /** * Set bool * * @param string $bool * * @return CMSInfo */ public function setBool($bool) { $this->bool = $bool; return $this; } /** * Get bool * * @return string */ public function getBool() { return $this->bool; } }