1: <?php
2:
3: /**
4: * This class models a WebHost
5: *
6: * Please be aware that this information is outdated when
7: * A modifying function in Transip_WebhostingService is called (e.g. createCronjob()).
8: *
9: * Refresh when needed with calling Transip_WebhostingService::getInfo() again
10: *
11: * @package Transip
12: * @class WebHost
13: * @author TransIP (support@transip.nl)
14: */
15: class Transip_WebHost
16: {
17: /**
18: * Domain name of the webhosting package
19: *
20: * @var string
21: */
22: public $domainName;
23:
24: /**
25: * The list of active cronjobs for this webhosting package
26: *
27: * @var Transip_Cronjob[]
28: */
29: public $cronjobs;
30:
31: /**
32: * The list of active Mailboxes for this webhosting package
33: *
34: * @var Transip_MailBox[]
35: */
36: public $mailBoxes;
37:
38: /**
39: * The list of active Databases for this webhosting package
40: *
41: * @var Transip_Db[]
42: */
43: public $dbs;
44:
45: /**
46: * The list of active mail aliases/forwards for this webhosting package
47: *
48: * @var Transip_MailForward[]
49: */
50: public $mailForwards;
51:
52: /**
53: * The list of active subdomains for this webhosting package
54: *
55: * @var Transip_SubDomain[]
56: */
57: public $subDomains;
58: }
59:
60: ?>
61: