mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-11 21:38:39 +00:00
16 lines
340 B
PHP
Executable File
16 lines
340 B
PHP
Executable File
<?php
|
|
|
|
namespace Mpdf\Tag;
|
|
|
|
class Tts extends SubstituteTag
|
|
{
|
|
|
|
public function open($attr, &$ahtml, &$ihtml)
|
|
{
|
|
$this->mpdf->tts = true;
|
|
$this->mpdf->InlineProperties['TTS'] = $this->mpdf->saveInlineProperties();
|
|
$this->mpdf->setCSS(['FONT-FAMILY' => 'csymbol', 'FONT-WEIGHT' => 'normal', 'FONT-STYLE' => 'normal'], 'INLINE');
|
|
}
|
|
|
|
}
|