id; } /** * Set title * * @param string $value * @return SystemTemplate */ public function set_title($value) { $this->title = $value; return $this; } /** * Get title * * @return string */ public function get_title() { return $this->title; } /** * Set comment * * @param text $value * @return SystemTemplate */ public function set_comment($value) { $this->comment = $value; return $this; } /** * Get comment * * @return text */ public function get_comment() { return $this->comment; } /** * Set image * * @param string $value * @return SystemTemplate */ public function set_image($value) { $this->image = $value; return $this; } /** * Get image * * @return string */ public function get_image() { return $this->image; } /** * Set content * * @param text $value * @return SystemTemplate */ public function set_content($value) { $this->content = $value; return $this; } /** * Get content * * @return text */ public function get_content() { return $this->content; } }