c_person.php
1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?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; }
};
?>