Files
luos/gulliver/thirdparty/html2ps_pdf/value.line-height.class.php
Victor Saisa Lopez 6d9858d6d0 HOR-1738 "Change folder permissions in ProcessMaker" SOLVED
Issue:
    Change folder permissions in ProcessMaker
Cause:
    Nuevo requerimiento
Solution:
    Se cambio los permisos de los files and directories
2016-08-30 13:03:35 -04:00

53 lines
909 B
PHP

<?php
require_once(HTML2PS_DIR.'value.generic.php');
class LineHeight_Absolute extends CSSValue {
var $length;
function apply($value) {
return $this->length;
}
function is_default() {
return false;
}
function LineHeight_Absolute($value) {
$this->length = $value;
}
function units2pt($base) {
$this->length = units2pt($this->length, $base);
}
function &copy() {
$value =& new LineHeight_Absolute($this->length);
return $value;
}
}
class LineHeight_Relative extends CSSValue {
var $fraction;
function apply($value) {
return $this->fraction * $value;
}
function is_default() {
return $this->fraction == 1.1;
}
function LineHeight_Relative($value) {
$this->fraction = $value;
}
function units2pt($base) { }
function &copy() {
$value =& new LineHeight_Relative($this->fraction);
return $value;
}
}
?>