| Server IP : 85.158.181.41 / Your IP : 216.73.217.12 Web Server : Apache System : Linux cloud9-vm129 6.1.178+1-ph #ph SMP PREEMPT_DYNAMIC Wed Jul 29 09:00:54 UTC 2026 x86_64 User : moncbefd ( 1024) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/moncbefd/www.moneta.at/vendor/mpdf/mpdf/src/Tag/ |
Upload File : |
<?php
namespace Mpdf\Tag;
use Mpdf\Utils\UtfString;
class Option extends Tag
{
public function open($attr, &$ahtml, &$ihtml)
{
$this->mpdf->lastoptionaltag = '';
$this->mpdf->selectoption['ACTIVE'] = true;
$this->mpdf->selectoption['currentSEL'] = false;
if (empty($this->mpdf->selectoption)) {
$this->mpdf->selectoption['MAXWIDTH'] = '';
$this->mpdf->selectoption['SELECTED'] = '';
}
if (isset($attr['SELECTED'])) {
$this->mpdf->selectoption['SELECTED'] = '';
$this->mpdf->selectoption['currentSEL'] = true;
}
if (isset($attr['VALUE'])) {
$attr['VALUE'] = UtfString::strcode2utf($attr['VALUE']);
$attr['VALUE'] = $this->mpdf->lesser_entity_decode($attr['VALUE']);
if ($this->mpdf->onlyCoreFonts) {
$attr['VALUE'] = mb_convert_encoding($attr['VALUE'], $this->mpdf->mb_enc, 'UTF-8');
}
}
$this->mpdf->selectoption['currentVAL'] = $attr['VALUE'];
}
public function close(&$ahtml, &$ihtml)
{
$this->mpdf->selectoption['ACTIVE'] = false;
$this->mpdf->lastoptionaltag = '';
}
}