Files
luos/thirdparty/html2ps_pdf/list-style.image.php
Paula Quispe 9eb7d6cac2 HOR-2689
2017-08-03 17:00:30 -04:00

22 lines
335 B
PHP

<?php
class ListStyleImage {
var $_url;
var $_image;
function ListStyleImage($url, $image) {
$this->_url = $url;
$this->_image = $image;
}
function &copy() {
$value =& new ListStyleImage($this->_url, $this->_image);
return $value;
}
function is_default() {
return is_null($this->_url);
}
}
?>