container = 'footer'; $this->sectionId = $sectionId; $this->setType($type); $this->setDocPart($this->container, ($sectionId - 1) * 3 + $footerId); } /** * Set type * * @param string $value * @since 0.10.0 */ public function setType($value = self::AUTO) { $this->type = $value; } /** * Get type * * @return string * @since 0.10.0 */ public function getType() { return $this->type; } }