id; } /** * Set name * * @param string $name * @return EntityBlock */ public function setName($name) { $this->name = $name; return $this; } /** * Get name * * @return string */ public function getName() { return $this->name; } /** * Set description * * @param string $description * @return EntityBlock */ public function setDescription($description) { $this->description = $description; return $this; } /** * Get description * * @return string */ public function getDescription() { return $this->description; } /** * Set path * * @param string $path * @return EntityBlock */ public function setPath($path) { $this->path = $path; return $this; } /** * Get path * * @return string */ public function getPath() { return $this->path; } /** * Set controller * * @param string $controller * @return EntityBlock */ public function setController($controller) { $this->controller = $controller; return $this; } /** * Get controller * * @return string */ public function getController() { return $this->controller; } /** * Set active * * @param boolean $active * @return EntityBlock */ public function setActive($active) { $this->active = $active; return $this; } /** * Get active * * @return boolean */ public function getActive() { return $this->active; } }