Lines Matching defs:value

463 			$this->SetJSButton($w, $h, $objattr['fieldname'], (isset($objattr['value']) ? $objattr['value'] : ''), $js, $objattr['ID'], $objattr['title'], $flags, (isset($objattr['Indexed']) ? $objattr['Indexed'] : false));
490 $this->SetFormButtonText($objattr['value']);
491 $this->SetFormReset($w, $h, $objattr['fieldname'], $objattr['value'], $objattr['title'], $flags, (isset($objattr['background-col']) ? $objattr['background-col'] : false), (isset($objattr['border-col']) ? $objattr['border-col'] : false), (isset($objattr['noprint']) ? $objattr['noprint'] : false));
496 $this->SetFormButtonText($objattr['value']);
497 $this->SetFormSubmit($w, $h, $objattr['fieldname'], $objattr['value'], $url, $objattr['title'], $type, $method, $flags, (isset($objattr['background-col']) ? $objattr['background-col'] : false), (isset($objattr['border-col']) ? $objattr['border-col'] : false), (isset($objattr['noprint']) ? $objattr['noprint'] : false));
499 $this->SetFormButtonText($objattr['value']);
505 $this->SetJSButton($w, $h, $objattr['fieldname'], $objattr['value'], $js, 0, $objattr['title'], $flags, false, (isset($objattr['background-col']) ? $objattr['background-col'] : false), (isset($objattr['border-col']) ? $objattr['border-col'] : false), (isset($objattr['noprint']) ? $objattr['noprint'] : false));
557 $this->SetCheckBox($w, $h, $objattr['fieldname'], $objattr['value'], $objattr['title'], $checked, $flags, (isset($objattr['disabled']) ? $objattr['disabled'] : false));
609 $this->SetRadio($w, $h, $objattr['fieldname'], $objattr['value'], (isset($objattr['title']) ? $objattr['title'] : ''), $checked, $flags, (isset($objattr['disabled']) ? $objattr['disabled'] : false));
837 function SetFormText($w, $h, $name, $value = '', $default = '', $title = '', $flags = [], $align = 'L', $hidden = false, $maxlen = -1, $js = '', $background_col = false, $border_col = false)
854 $value = $this->Win1252ToPDFDocEncoding($value);
859 $this->mpdf->UTF8StringToArray($value); // Add characters to font subset
863 if ($value) {
864 $value = $this->writer->utf8ToUtf16BigEndian($value);
892 'V' => $value,
1012 function SetCheckBox($w, $h, $name, $value, $title = '', $checked = false, $flags = [], $disabled = false)
1014 $this->SetFormButton($w, $h, $name, $value, 'checkbox', $title, $flags, $checked, $disabled);
1019 function SetRadio($w, $h, $name, $value, $title = '', $checked = false, $flags = [], $disabled = false)
1021 $this->SetFormButton($w, $h, $name, $value, 'radio', $title, $flags, $checked, $disabled);
1025 function SetFormReset($w, $h, $name, $value = 'Reset', $title = '', $flags = [], $background_col = false, $border_col = false, $noprint = false)
1030 $this->SetFormButton($w, $h, $name, $value, 'reset', $title, $flags, false, false, $background_col, $border_col, $noprint);
1034 function SetJSButton($w, $h, $name, $value, $js, $image_id = 0, $title = '', $flags = [], $indexed = false, $background_col = false, $border_col = false, $noprint = false)
1036 $this->SetFormButton($w, $h, $name, $value, 'js_button', $title, $flags, false, false, $background_col, $border_col, $noprint);
1051 function SetFormSubmit($w, $h, $name, $value = 'Submit', $url = '', $title = '', $typ = 'html', $method = 'POST', $flags = [], $background_col = false, $border_col = false, $noprint = false)
1057 $this->SetFormButton($w, $h, $name, $value, 'submit', $title, $flags, false, false, $background_col, $border_col, $noprint);
1097 function SetFormButton($bb, $hh, $name, $value, $type, $title = '', $flags = [], $checked = false, $disabled = false, $background_col = false, $border_col = false, $noprint = false)
1106 $this->mpdf->UTF8StringToArray($value); // Add characters to font subset
1110 $uvalue = $this->writer->utf8ToUtf16BigEndian($value);
1112 $uvalue = $this->writer->utf8ToUtf16BigEndian($value);
1113 $value = mb_convert_encoding($value, 'Windows-1252', 'UTF-8');
1115 $value = $this->writer->utf8ToUtf16BigEndian($value);
1116 $uvalue = $value;
1120 $value = $this->Win1252ToPDFDocEncoding($value); //// ??? not needed
1121 $uvalue = mb_convert_encoding($value, 'UTF-8', 'Windows-1252');
1125 if (!preg_match('/^[a-zA-Z0-9_:\-\.]+$/', $value)) {
1126 throw new \Mpdf\MpdfException("Field '" . $name . "' must have a value, which can only contain letters, numbers, colon(:), underscore(_), hyphen(-) or period(.)");
1137 'n' => $this->formCount, 'V' => $value, 'OPT' => $uvalue, 'disabled' => $disabled
1140 $this->form_radio_groups[$name]['on'] = $value;
1174 'V' => $value,
1527 // To submit a value, needs to be in /AP dictionary, AND this object must contain a /Fields entry