Home
last modified time | relevance | path

Searched refs:get_attribute (Results 1 – 25 of 25) sorted by relevance

/plugin/html2pdf/html2pdf/html2ps/
H A Dconfig.parse.php24 $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 Dhtml.attrs.inc.php210 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 Dbox.input.img.php87 $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 Dcss.selectors.inc.php59 $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 Dbox.input.password.php8 $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 Dcss.ruleset.class.php26 $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 Dbox.input.text.php23 $text = trim($root->get_attribute('value'));
31 $name = $root->get_attribute('name');
33 $box =& new TextInputBox($root->get_attribute("value"), $name);
H A Dbox.button.submit.php57 $text = $root->get_attribute("value");
62 $field = $root->get_attribute('name');
63 $value = $root->get_attribute('value');
H A Dbox.form.php20 $name = $root->get_attribute('name');
22 $name = $root->get_attribute('id');
H A Ddom.php4.inc.php31 function get_attribute($name) { function in PHP4DOMTree
32 return $this->_element->get_attribute($name);
H A Dbox.iframe.php26 trim($root->get_attribute('src')) == '') {
31 $src = $root->get_attribute('src');
H A Dbox.img.php244 $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 Dbox.checkbutton.php60 $value = $root->get_attribute('value');
68 $root->get_attribute('name'),
H A Dbox.select.php19 $name = $root->get_attribute('name');
37 $options[] = array($child->get_attribute('value'),
H A Dbox.frame.php123 $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 Dbox.button.reset.php10 $text = $root->get_attribute("value");
H A Dparser.xhtml.class.php71 $new_url = $pipeline->guess_url($root->get_attribute('href'));
H A Dbox.input.textarea.php17 $name = $root->get_attribute('name');
H A Ddom.php5.inc.php30 function get_attribute($name) { function in DOMTree
H A Dbox.button.php53 $text = $root->get_attribute("value");
H A Dbox.radiobutton.php24 $value = $root->get_attribute('value');
H A Dbox.table.cell.php199 $box->colspan = max(1,(int)$root->get_attribute('colspan'));
200 $box->rowspan = max(1,(int)$root->get_attribute('rowspan'));
H A Dcss.parse.inc.php17 $style = $root->get_attribute("style");
H A Ddom.activelink.inc.php37 function get_attribute($name) { function in ActiveLinkDOMTree
H A Dbox.table.php132 $value = $root->get_attribute('width');