mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-11 13:28:40 +00:00
19 lines
382 B
PHP
Executable File
19 lines
382 B
PHP
Executable File
<?php
|
|
|
|
namespace Mpdf\Tag;
|
|
|
|
abstract class SubstituteTag extends Tag
|
|
{
|
|
|
|
public function close(&$ahtml, &$ihtml)
|
|
{
|
|
$tag = $this->getTagName();
|
|
if ($this->mpdf->InlineProperties[$tag]) {
|
|
$this->mpdf->restoreInlineProperties($this->mpdf->InlineProperties[$tag]);
|
|
}
|
|
unset($this->mpdf->InlineProperties[$tag]);
|
|
$ltag = strtolower($tag);
|
|
$this->mpdf->$ltag = false;
|
|
}
|
|
}
|