Home
last modified time | relevance | path

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

/plugin/html2pdf/html2pdf/html2ps/
H A Dheight.php86 function _fix_value($value, &$box, $default, $no_table_recursion) { argument
120 if (!$no_table_recursion) {
184 function apply_min($value, &$box, $no_table_recursion) { argument
188 return max($this->_fix_value($this->min, $box, $value, $no_table_recursion), $value);
192 function apply_max($value, &$box, $no_table_recursion) { argument
196 return min($this->_fix_value($this->max, $box, $value, $no_table_recursion), $value);
200 function apply($value, &$box, $no_table_recursion = false) { argument
202 $height = $this->_fix_value($this->constant, $box, $value, $no_table_recursion);
204 … = $this->apply_min($this->apply_max($value, $box, $no_table_recursion), $box, $no_table_recursio…