Files
luos/gulliver/thirdparty/html2ps_pdf/value.border.width.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

24 lines
483 B
PHP

<?php
require_once(HTML2PS_DIR.'value.generic.php');
class BorderWidth extends CSSValue {
var $left;
var $right;
var $top;
var $bottom;
function &copy() {
$value =& new BorderWidth($this->top, $this->right, $this->bottom, $this->left);
return $value;
}
function BorderWidth($top, $right, $bottom, $left) {
$this->left = $left->copy();
$this->right = $right->copy();
$this->top = $top->copy();
$this->bottom = $bottom->copy();
}
}
?>