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

33 lines
419 B
PHP

<?php
class CSSCounter {
var $_name;
var $_value;
function CSSCounter($name) {
$this->set_name($name);
$this->reset();
}
function get() {
return $this->_value;
}
function get_name() {
return $this->_name;
}
function reset() {
$this->_value = 0;
}
function set($value) {
$this->_value = $value;
}
function set_name($value) {
$this->_name = $value;
}
}
?>