text = String::toUTF8($text); $this->depth = $depth; if (array_key_exists('Heading_' . $this->depth, Style::getStyles())) { $this->style = 'Heading' . $this->depth; } return $this; } /** * Set Bookmark ID * * @param int $bookmarkId */ public function setBookmarkId($bookmarkId) { $this->bookmarkId = $bookmarkId; } /** * Get Anchor * * @return int */ public function getBookmarkId() { return $this->bookmarkId; } /** * Get Title Text content * * @return string */ public function getText() { return $this->text; } /** * Get depth * * @return integer */ public function getDepth() { return $this->depth; } /** * Get Title style * * @return string */ public function getStyle() { return $this->style; } /** * Set Anchor * * @param int $anchor * @deprecated 0.10.0 * @codeCoverageIgnore */ public function setAnchor($anchor) { $this->anchor = $anchor; } /** * Get Anchor * * @return int * @deprecated 0.10.0 * @codeCoverageIgnore */ public function getAnchor() { return '_Toc' . (252634154 + $this->bookmarkId); } }