Some very old PHP code originally intended to become an image management tool.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

42 lines
1.1 KiB

<?php
require_once LIBDIR . 'c_xmlify.php';
class c_person extends c_xmlify
{
protected $personId;
protected $photographerId;
protected $ownerId;
protected $firstname;
protected $surname;
protected $company;
protected $email;
protected $url;
protected $cameraId;
protected $wmWidth;
protected $wmHeight;
protected $wmXPos;
protected $wmYPos;
function __construct ($xr)
{
if (NULL !== $xr)
parent::__construct ($xr);
}
function get_personId () { return $this->personId; }
function get_photographerId () { return $this->photographerId; }
function get_ownerId () { return $this->ownerId; }
function get_firstname () { return $this->firstname; }
function get_surname () { return $this->surname; }
function get_company () { return $this->company; }
function get_email () { return $this->email; }
function get_url () { return $this->url; }
function get_cameraId () { return $this->cameraId; }
function get_wmWidth () { return $this->wmWidth; }
function get_wmHeight () { return $this->wmHeight; }
function get_wmXPos () { return $this->wmXPos; }
function get_wmYPos () { return $this->wmYPos; }
};
?>