_name = $name; $this->_section = $section; $this->_slug = $slug; $this->_type = $type; $this->_default = $default; } public function getName(){ return $this->_name; } public function getSection(){ return $this->_section; } public function getSlug(){ return $this->_slug; } public function getType(){ return $this->_type; } public function getDefault(){ return $this->_default; } }