Home
last modified time | relevance | path

Searched refs:root (Results 776 – 800 of 880) sorted by last modified time

1...<<313233343536

/plugin/html2pdf/html2pdf/html2ps/
H A Dbox.block.php32 * @param mixed $root the HTML element corresponding to the element being created
38 function &create(&$root, &$pipeline) { argument
41 $box->create_content($root, $pipeline);
H A Dbox.container.php396 * @param mixed $root node corresponding to the current container object
398 function create_content(&$root, &$pipeline) { argument
400 $child = $root->first_child();
H A Dbox.form.php18 function &create(&$root, &$pipeline) { argument
19 if ($root->has_attribute('name')) {
20 $name = $root->get_attribute('name');
21 } elseif ($root->has_attribute('id')) {
22 $name = $root->get_attribute('id');
29 $box->create_content($root, $pipeline);
H A Dbox.inline.php93 function &create(&$root, &$pipeline) { argument
95 if ($root->node_type() == XML_TEXT_NODE) {
97 $box = InlineBox::create_from_text($root->content,
109 $child = $root->first_child();
H A Dbox.input.password.php5 function &create(&$root, &$pipeline) { argument
7 if ($root->has_attribute('value')) {
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 Dbox.input.text.php20 function &create(&$root, &$pipeline) { argument
22 if ($root->has_attribute('value')) {
23 $text = trim($root->get_attribute('value'));
31 $name = $root->get_attribute('name');
33 $box =& new TextInputBox($root->get_attribute("value"), $name);
H A Dbox.input.textarea.php15 function &create(&$root, &$pipeline) { argument
16 $value = $root->get_content();
17 $name = $root->get_attribute('name');
21 $box->create_content($root, $pipeline);
H A Dbox.radiobutton.php21 function &create(&$root, &$pipeline) { argument
22 $checked = $root->has_attribute('checked');
24 $value = $root->get_attribute('value');
H A Dbox.table.cell.php112 function &create(&$root, &$pipeline) { argument
199 $box->colspan = max(1,(int)$root->get_attribute('colspan'));
200 $box->rowspan = max(1,(int)$root->get_attribute('rowspan'));
211 $box->create_content($root, $pipeline);
219 $child = $root->first_child();
232 $child = $root->last_child();
H A Dbox.table.section.php5 function &create(&$root, &$pipeline) { argument
16 $child = $root->first_child();
H A Dconfig.parse.php18 $child = $root->first_child();
23 if ($root->has_attribute('name')) {
33 if ($root->has_attribute('mask')) {
44 if ($root->has_attribute('name')) {
54 if ($root->has_attribute('mask')) {
83 $embed_flag = (bool)$root->get_attribute('embed');
93 $child = $root->first_child();
124 $child = $root->first_child();
150 $child = $root->first_child();
180 $root=$doc->document_element();
[all …]
H A Dparser.xhtml.class.php55 function _scan_base(&$root, &$pipeline) { argument
56 switch ($root->node_type()) {
58 if ($root->tagname() === 'base') {
71 $new_url = $pipeline->guess_url($root->get_attribute('href'));
80 $child = $root->first_child();
H A Dtree.navigation.inc.php28 function &traverse_dom_tree_pdf(&$root) { argument
29 switch ($root->node_type()) {
31 $child =& $root->first_child();
43 if (strtolower($root->tagname()) == "body") {
44 return $root;
47 $child =& $root->first_child();
H A Dbox.img.php239 function &create(&$root, &$pipeline) { argument
244 $src = $url_autofix->apply(trim($root->get_attribute("src")));
252 if ($root->has_attribute('width')) {
253 $width = px2pt($root->get_attribute('width'));
258 if ($root->has_attribute('height')) {
259 $height = px2pt($root->get_attribute('height'));
264 $alt = $root->get_attribute('alt');
H A Dcss.parse.inc.php16 function parse_style_attr($root, &$state, &$pipeline) { argument
17 $style = $root->get_attribute("style");
40 $root
44 $rule->apply($root, $state, $pipeline);
H A Dcss.rules.inc.php13 function apply(&$root, &$state, &$pipeline) { argument
46 function match($root) { argument
47 return match_selector($this->selector, $root);
H A Dhtml.attrs.inc.php154 function execute_attrs_before($root, &$pipeline) { execute_attrs($root, '_before', $pipeline); } argument
155 function execute_attrs_after($root, &$pipeline) { execute_attrs($root, '_after', $pipeline); } argument
156 function execute_attrs_after_styles($root, &$pipeline) { execute_attrs($root, '_after_styles', $pip… argument
162 if ($root->has_attribute($attr)) {
164 $fun($root, $pipeline);
170 if ($root->has_attribute($attr)) {
172 $fun($root, $pipeline);
250 $color = $root->get_attribute('link');
730 if ($root->has_attribute('name')) {
739 if (!$root->has_attribute('size')) {
[all …]
H A Dbox.button.php34 * @param DOMElement $root pointer to the DOM tree element corresponding to the button.
38 function &create(&$root, &$pipeline) { argument
52 if ($root->has_attribute("value")) {
53 $text = $root->get_attribute("value");
H A Dbox.button.submit.php46 * @param Object $root DOM tree node corresponding to the box being created
51 function &create(&$root, &$pipeline) { argument
56 if ($root->has_attribute("value")) {
57 $text = $root->get_attribute("value");
62 $field = $root->get_attribute('name');
63 $value = $root->get_attribute('value');
H A Dbox.checkbutton.php53 * @param DOMElement $root the DOM 'input' element
59 function &create(&$root, &$pipeline) { argument
60 $value = $root->get_attribute('value');
67 $box =& new CheckBox($root->has_attribute('checked'),
68 $root->get_attribute('name'),
H A Dbox.iframe.php5 function &create(&$root, &$pipeline) { argument
6 $box =& new IFrameBox($root, $pipeline);
21 function IFrameBox(&$root, $pipeline) { argument
25 if (!$root->has_attribute('src') ||
26 trim($root->get_attribute('src')) == '') {
31 $src = $root->get_attribute('src');
H A Dbox.input.img.php86 function &create(&$root, &$pipeline) { argument
87 $name = $root->get_attribute('name');
88 $value = $root->get_attribute('value');
91 $src = $url_autofix->apply(trim($root->get_attribute("src")));
97 if ($root->has_attribute('width')) {
98 $width = px2pt($root->get_attribute('width'));
103 if ($root->has_attribute('height')) {
104 $height = px2pt($root->get_attribute('height'));
109 $alt = $root->get_attribute('alt');
H A Dbox.legend.php5 function &create(&$root, &$pipeline) { argument
6 $box = new LegendBox($root);
8 $box->create_content($root, $pipeline);
13 function LegendBox(&$root) { argument
H A Dbox.list-item.php7 function &create(&$root, &$pipeline) { argument
8 $box = new ListItemBox($root, $pipeline);
31 $box->create_content($root, $pipeline);
64 function ListItemBox(&$root, &$pipeline) { argument
66 $this->BlockBox($root);
H A Dbox.page.margin.class.php78 $root = null;
79 $at_rule->css->apply($root, $state, $pipeline);

1...<<313233343536