/plugin/html2pdf/html2pdf/html2ps/ |
H A D | config.parse.php | 24 $names = explode(',', $root->get_attribute('name')); 45 $names = explode(',', $root->get_attribute('name')); 70 $resolver->add_afm_mapping($root->get_attribute('typeface'), 71 $root->get_attribute('file')); 83 $embed_flag = (bool)$root->get_attribute('embed'); 87 $resolver->add_ttf_mapping($root->get_attribute('typeface'), 88 $root->get_attribute('file'), 98 $names = explode(",",$root->get_attribute('name')); 108 $names = explode(",",$root->get_attribute('name')); 155 … $resolver->add_alias(strtolower($child->get_attribute('alias')), $child->get_attribute('family')); [all …]
|
H A D | html.attrs.inc.php | 210 switch ($root->get_attribute('frameborder')) { 250 $color = $root->get_attribute('link'); 391 switch ($root->get_attribute('align')) { 448 $width = (int)$root->get_attribute('border'); 476 $rules = $root->get_attribute('rules'); 512 $width = (int)$root->get_attribute('border'); 604 $value = $root->get_attribute('width'); 624 $value = $root->get_attribute('height'); 636 $value = $root->get_attribute('height'); 646 $size = $root->get_attribute('size'); [all …]
|
H A D | box.input.img.php | 87 $name = $root->get_attribute('name'); 88 $value = $root->get_attribute('value'); 91 $src = $url_autofix->apply(trim($root->get_attribute("src"))); 98 $width = px2pt($root->get_attribute('width')); 104 $height = px2pt($root->get_attribute('height')); 109 $alt = $root->get_attribute('alt');
|
H A D | css.selectors.inc.php | 59 $classes = preg_split("/\s+/", strtolower($root->get_attribute('class'))); 76 if ($selector[1] == strtolower($root->get_attribute('id'))) { return true; }; 80 if ($selector[1] == strtolower($root->get_attribute('class'))) { return true; }; 125 return strtolower($root->get_attribute($attr_name)) == strtolower($attr_value); 143 $words = preg_split("/\s+/",$root->get_attribute($attr_name));
|
H A D | box.input.password.php | 8 $text = str_repeat("*",strlen($root->get_attribute("value"))); 16 $name = $root->get_attribute('name'); 18 $box =& new PasswordInputBox($text, $root->get_attribute("value"), $name);
|
H A D | css.ruleset.class.php | 26 $media_list = preg_split("/\s*,\s*/",trim($root->get_attribute("media"))); 40 $GLOBALS['g_stylesheet_title'] = $root->get_attribute("title"); 43 …if (!$root->has_attribute("title") || $root->get_attribute("title") === $GLOBALS['g_stylesheet_tit… 67 $rel = strtolower($root->get_attribute("rel")); 69 $type = strtolower($root->get_attribute("type")); 71 $media = explode(",",$root->get_attribute("media")); 81 $src = $url_autofix->apply(trim($root->get_attribute('href')));
|
H A D | box.input.text.php | 23 $text = trim($root->get_attribute('value')); 31 $name = $root->get_attribute('name'); 33 $box =& new TextInputBox($root->get_attribute("value"), $name);
|
H A D | box.button.submit.php | 57 $text = $root->get_attribute("value"); 62 $field = $root->get_attribute('name'); 63 $value = $root->get_attribute('value');
|
H A D | box.form.php | 20 $name = $root->get_attribute('name'); 22 $name = $root->get_attribute('id');
|
H A D | dom.php4.inc.php | 31 function get_attribute($name) { function in PHP4DOMTree 32 return $this->_element->get_attribute($name);
|
H A D | box.iframe.php | 26 trim($root->get_attribute('src')) == '') { 31 $src = $root->get_attribute('src');
|
H A D | box.img.php | 244 $src = $url_autofix->apply(trim($root->get_attribute("src"))); 253 $width = px2pt($root->get_attribute('width')); 259 $height = px2pt($root->get_attribute('height')); 264 $alt = $root->get_attribute('alt');
|
H A D | box.checkbutton.php | 60 $value = $root->get_attribute('value'); 68 $root->get_attribute('name'),
|
H A D | box.select.php | 19 $name = $root->get_attribute('name'); 37 $options[] = array($child->get_attribute('value'),
|
H A D | box.frame.php | 123 $src = $root->get_attribute('src'); 235 $this->rows = $root->has_attribute('rows') ? $root->get_attribute('rows') : "100%"; 236 $this->cols = $root->has_attribute('cols') ? $root->get_attribute('cols') : "100%";
|
H A D | box.button.reset.php | 10 $text = $root->get_attribute("value");
|
H A D | parser.xhtml.class.php | 71 $new_url = $pipeline->guess_url($root->get_attribute('href'));
|
H A D | box.input.textarea.php | 17 $name = $root->get_attribute('name');
|
H A D | dom.php5.inc.php | 30 function get_attribute($name) { function in DOMTree
|
H A D | box.button.php | 53 $text = $root->get_attribute("value");
|
H A D | box.radiobutton.php | 24 $value = $root->get_attribute('value');
|
H A D | box.table.cell.php | 199 $box->colspan = max(1,(int)$root->get_attribute('colspan')); 200 $box->rowspan = max(1,(int)$root->get_attribute('rowspan'));
|
H A D | css.parse.inc.php | 17 $style = $root->get_attribute("style");
|
H A D | dom.activelink.inc.php | 37 function get_attribute($name) { function in ActiveLinkDOMTree
|
H A D | box.table.php | 132 $value = $root->get_attribute('width');
|