Home
last modified time | relevance | path

Searched refs:selectoption (Results 1 – 3 of 3) sorted by relevance

/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/
H A DSelect.php23 $this->mpdf->selectoption['SPELLCHECK'] = true;
27 $this->mpdf->selectoption['COLOR'] = $this->colorConverter->convert($properties['COLOR'], $this->mpdf->PDFAXwarnings);
31 $this->mpdf->selectoption['DISABLED'] = $attr['DISABLED'];
34 $this->mpdf->selectoption['READONLY'] = $attr['READONLY'];
37 $this->mpdf->selectoption['REQUIRED'] = $attr['REQUIRED'];
40 $this->mpdf->selectoption['EDITABLE'] = $attr['EDITABLE'];
43 $this->mpdf->selectoption['TITLE'] = $attr['TITLE'];
46 $this->mpdf->selectoption['MULTIPLE'] = $attr['MULTIPLE'];
49 $this->mpdf->selectoption['SIZE'] = $attr['SIZE'];
53 $this->mpdf->selectoption['NAM
[all...]
H A DOption.php13 $this->mpdf->selectoption['ACTIVE'] = true;
14 $this->mpdf->selectoption['currentSEL'] = false;
15 if (empty($this->mpdf->selectoption)) {
16 $this->mpdf->selectoption['MAXWIDTH'] = '';
17 $this->mpdf->selectoption['SELECTED'] = '';
20 $this->mpdf->selectoption['SELECTED'] = '';
21 $this->mpdf->selectoption['currentSEL'] = true;
30 $this->mpdf->selectoption['currentVAL'] = $attr['VALUE'];
35 $this->mpdf->selectoption['ACTIVE'] = false;
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DMpdf.php586 var $selectoption;
1547 $this->selectoption = [];
13515 if (!isset($this->selectoption['MAXWIDTH']) || $stringwidth > $this->selectoption['MAXWIDTH']) {
13516 $this->selectoption['MAXWIDTH'] = $stringwidth;
13518 if (!isset($this->selectoption['SELECTED']) || $this->selectoption['SELECTED'] == '') {
13519 $this->selectoption['SELECTED'] = $e;
13521 $this->selectoption['SELECTED-OTLDATA'] = $this->OTLdata;
13525 if (isset($this->selectoption['ACTIV
592 var $selectoption; global() variable in Mpdf\\Mpdf
[all...]