mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-11 13:28:40 +00:00
17 lines
300 B
PHP
Executable File
17 lines
300 B
PHP
Executable File
<?php
|
|
|
|
namespace Mpdf\Tag;
|
|
|
|
class TocPageBreak extends FormFeed
|
|
{
|
|
public function open($attr, &$ahtml, &$ihtml)
|
|
{
|
|
list($isbreak, $toc_id) = $this->tableOfContents->openTagTOCPAGEBREAK($attr);
|
|
$this->toc_id = $toc_id;
|
|
if ($isbreak) {
|
|
return;
|
|
}
|
|
parent::open($attr, $ahtml, $ihtml);
|
|
}
|
|
}
|