Home
last modified time | relevance | path

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

/plugin/html2pdf/html2pdf/html2ps/
Dconfig.parse.php24 $names = explode(',', $root->get_attribute('name'));
27 $child->get_attribute('normal'),
28 $child->get_attribute('italic'),
29 $child->get_attribute('oblique'));
35 $resolver->add_normal_encoding_override_mask($root->get_attribute('mask'),
36 $child->get_attribute('normal'),
37 $child->get_attribute('italic'),
38 $child->get_attribute('oblique'));
45 $names = explode(',', $root->get_attribute('name'));
48 $child->get_attribute('normal'),
[all …]
Dhtml.attrs.inc.php183 $handler->css($root->get_attribute('name'), $pipeline);
191 $handler->css($root->get_attribute('id'), $pipeline);
200 $handler->css($root->get_attribute('href'), $pipeline);
210 switch ($root->get_attribute('frameborder')) {
224 $handler->css((int)$root->get_attribute('marginheight').'px',$pipeline);
226 $handler->css((int)$root->get_attribute('marginheight').'px',$pipeline);
233 $handler->css((int)$root->get_attribute('marginwidth').'px',$pipeline);
235 $handler->css((int)$root->get_attribute('marginwidth').'px',$pipeline);
244 $handler->css($root->get_attribute('text'),$pipeline);
250 $color = $root->get_attribute('link');
[all …]
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');
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));
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')));
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);
Dbox.button.submit.php57 $text = $root->get_attribute("value");
62 $field = $root->get_attribute('name');
63 $value = $root->get_attribute('value');
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);
Dbox.form.php20 $name = $root->get_attribute('name');
22 $name = $root->get_attribute('id');
Ddom.php4.inc.php31 function get_attribute($name) { function in PHP4DOMTree
32 return $this->_element->get_attribute($name);
Dbox.iframe.php26 trim($root->get_attribute('src')) == '') {
31 $src = $root->get_attribute('src');
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');
Dbox.checkbutton.php60 $value = $root->get_attribute('value');
68 $root->get_attribute('name'),
Dbox.select.php19 $name = $root->get_attribute('name');
37 $options[] = array($child->get_attribute('value'),
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%";
Dbox.button.reset.php10 $text = $root->get_attribute("value");
Dparser.xhtml.class.php71 $new_url = $pipeline->guess_url($root->get_attribute('href'));
Dbox.input.textarea.php17 $name = $root->get_attribute('name');
Dbox.button.php53 $text = $root->get_attribute("value");
Ddom.php5.inc.php30 function get_attribute($name) { function in DOMTree
Dbox.table.cell.php199 $box->colspan = max(1,(int)$root->get_attribute('colspan'));
200 $box->rowspan = max(1,(int)$root->get_attribute('rowspan'));
Dbox.radiobutton.php24 $value = $root->get_attribute('value');
Dcss.parse.inc.php17 $style = $root->get_attribute("style");
Ddom.activelink.inc.php37 function get_attribute($name) { function in ActiveLinkDOMTree
Dbox.table.php132 $value = $root->get_attribute('width');