22 lines
335 B
PHP
22 lines
335 B
PHP
<?php
|
|
|
|
class ListStyleImage {
|
|
var $_url;
|
|
var $_image;
|
|
|
|
function ListStyleImage($url, $image) {
|
|
$this->_url = $url;
|
|
$this->_image = $image;
|
|
}
|
|
|
|
function ©() {
|
|
$value =& new ListStyleImage($this->_url, $this->_image);
|
|
return $value;
|
|
}
|
|
|
|
function is_default() {
|
|
return is_null($this->_url);
|
|
}
|
|
}
|
|
|
|
?>
|