Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
markup; } /** * Set Display Visual Indicator Of Markup Area. * * @param bool $markup * Set to true to show markup */ public function setMarkup($markup): void { $this->markup = $markup === null ? true : $markup; } /** * Get Display Comments. * * @return bool True if comments are shown */ public function hasComments() { return $this->comments; } /** * Set Display Comments. * * @param bool $comments * Set to true to show comments */ public function setComments($comments): void { $this->comments = $comments === null ? true : $comments; } /** * Get Display Content Revisions. * * @return bool True if content revisions are shown */ public function hasInsDel() { return $this->insDel; } /** * Set Display Content Revisions. * * @param bool $insDel * Set to true to show content revisions */ public function setInsDel($insDel): void { $this->insDel = $insDel === null ? true : $insDel; } /** * Get Display Formatting Revisions. * * @return bool True if formatting revisions are shown */ public function hasFormatting() { return $this->formatting; } /** * Set Display Formatting Revisions. * * @param null|bool $formatting * Set to true to show formatting revisions */ public function setFormatting($formatting = null): void { $this->formatting = $formatting === null ? true : $formatting; } /** * Get Display Ink Annotations. * * @return bool True if ink annotations are shown */ public function hasInkAnnotations() { return $this->inkAnnotations; } /** * Set Display Ink Annotations. * * @param bool $inkAnnotations * Set to true to show ink annotations */ public function setInkAnnotations($inkAnnotations): void { $this->inkAnnotations = $inkAnnotations === null ? true : $inkAnnotations; } }