mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-11 05:18:40 +00:00
26 lines
430 B
PHP
Executable File
26 lines
430 B
PHP
Executable File
<?php
|
|
|
|
namespace Mpdf\Tag;
|
|
|
|
class WatermarkText extends Tag
|
|
{
|
|
|
|
public function open($attr, &$ahtml, &$ihtml)
|
|
{
|
|
$txt = '';
|
|
if (!empty($attr['CONTENT'])) {
|
|
$txt = htmlspecialchars_decode($attr['CONTENT'], ENT_QUOTES);
|
|
}
|
|
|
|
$alpha = -1;
|
|
if (isset($attr['ALPHA']) && $attr['ALPHA'] > 0) {
|
|
$alpha = $attr['ALPHA'];
|
|
}
|
|
$this->mpdf->SetWatermarkText($txt, $alpha);
|
|
}
|
|
|
|
public function close(&$ahtml, &$ihtml)
|
|
{
|
|
}
|
|
}
|