1 <?php
2
3 namespace rpf\api;
4 use rpf\api\module\bbDomain_readEntry;
5 use rpf\api\module\bbDomain_readFrontpage;
6 use rpf\api\module\bbDomain_readHandles;
7 use rpf\api\module\bbDomain_readPhpini;
8 use rpf\api\module\bbDomain_readSettings;
9 use rpf\api\module\bbDomain_readSubdomain;
10 use rpf\api\module\bbDomain_readWebalizerSettings;
11 use rpf\api\module\bbDomain_searchEntry;
12 use rpf\api\module\bbEmail_readAccount;
13 use rpf\api\module\bbCustomer_readEntry;
14 use rpf\api\module\bbCustomer_readAddress;
15 use rpf\api\module\bbCustomer_readDiscount;
16 use rpf\api\module\bbCustomer_readPayment;
17 use rpf\api\module\bbCustomer_readTitle;
18 use rpf\api\module\bbCustomer_validateAddress;
19 use rpf\api\module\bbCustomer_validateEntry;
20 use rpf\api\module\bbCustomer_validatePayinfo;
21 use rpf\api\module\bbCustomer_getFreeOrdNr;
22 use rpf\api\module\bbQuota_readEntry;
23 use rpf\api\module\bbOrder_readDisposition;
24 use rpf\api\module\bbOrder_readEntry;
25 use rpf\api\module\bbOrder_readAccountAddress;
26 use rpf\api\module\bbOrder_readAccountEntry;
27 use rpf\api\module\customer;
28 use rpf\api\module\email;
29 use rpf\api\module\order;
30 use rpf\api\module\placeholder;
31 use rpf\api\module\user;
32 use rpf\system\module\log;
33
34 35 36 37 38 39 40 41 42
43 class api extends apiModule
44 {
45 46 47
48 public function getUser()
49 {
50 return $this->getModule(user::class);
51 }
52
53 54 55
56 public function getDomainReadEntry()
57 {
58 return $this->getModule(bbDomain_readEntry::class);
59 }
60
61 62 63
64 public function getDomainReadFrontpage()
65 {
66 return $this->getModule(bbDomain_readFrontpage::class);
67 }
68
69 70 71
72 public function getDomainReadHandles()
73 {
74 return $this->getModule(bbDomain_readHandles::class);
75 }
76
77 78 79
80 public function getDomainReadPhpini()
81 {
82 return $this->getModule(bbDomain_readPhpini::class);
83 }
84
85 86 87
88 public function getDomainReadSettings()
89 {
90 return $this->getModule(bbDomain_readSettings::class);
91 }
92
93 94 95
96 public function getDomainReadSubdomain()
97 {
98 return $this->getModule(bbDomain_readSubdomain::class);
99 }
100
101 102 103
104 public function getDomainReadWebalizerSettings()
105 {
106 return $this->getModule(bbDomain_readWebalizerSettings::class);
107 }
108
109 110 111
112 public function getDomainsearchEntry()
113 {
114 return $this->getModule(bbDomain_searchEntry::class);
115 }
116
117 118 119
120 public function getEmailReadAccount()
121 {
122 return $this->getModule(bbEmail_readAccount::class);
123 }
124
125 126 127
128 public function getCustomerReadEntry()
129 {
130 return $this->getModule(bbCustomer_readEntry::class);
131 }
132
133 134 135
136 public function getCustomerReadAddress()
137 {
138 return $this->getModule(bbCustomer_readAddress::class);
139 }
140
141 142 143
144 public function getCustomerReadDiscount()
145 {
146 return $this->getModule(bbCustomer_readDiscount::class);
147 }
148
149 150 151
152 public function getCustomerReadPayment()
153 {
154 return $this->getModule(bbCustomer_readPayment::class);
155 }
156
157 158 159
160 public function getCustomerReadTitle()
161 {
162 return $this->getModule(bbCustomer_readTitle::class);
163 }
164
165 166 167
168 public function getCustomerValidateAddress()
169 {
170 return $this->getModule(bbCustomer_validateAddress::class);
171 }
172
173 174 175
176 public function getCustomerValidateEntry()
177 {
178 return $this->getModule(bbCustomer_validateEntry::class);
179 }
180
181 182 183
184 public function getCustomerValidatePayinfo()
185 {
186 return $this->getModule(bbCustomer_validatePayinfo::class);
187 }
188
189 190 191
192 public function getCustomerGetFreeOrdNr()
193 {
194 return $this->getModule(bbCustomer_getFreeOrdNr::class);
195 }
196
197 198 199
200 public function getOrderReadDisposition()
201 {
202 return $this->getModule(bbOrder_readDisposition::class);
203 }
204
205 206 207
208 public function getOrderReadEntry()
209 {
210 return $this->getModule(bbOrder_readEntry::class);
211 }
212
213 214 215
216 public function getOrderReadAccountAddress()
217 {
218 return $this->getModule(bbOrder_readAccountAddress::class);
219 }
220
221 222 223
224 public function getOrderReadAccountEntry()
225 {
226 return $this->getModule(bbOrder_readAccountEntry::class);
227 }
228
229 230 231
232 public function getQuotaReadEntry()
233 {
234 return $this->getModule(bbQuota_readEntry::class);
235 }
236
237 238 239
240 public function getPlaceholder()
241 {
242 return $this->getModule(placeholder::class);
243 }
244
245 246 247 248
249 public function getCustomer()
250 {
251 log::debug("Usage of deprecated object 'customer'", __METHOD__);
252 return $this->getModule(customer::class);
253 }
254
255 256 257 258
259 public function getEmail()
260 {
261 log::debug("Usage of deprecated object 'email'", __METHOD__);
262 return $this->getModule(email::class);
263 }
264
265 266 267 268
269 public function getOrder()
270 {
271 log::debug("Usage of deprecated object 'order'", __METHOD__);
272 return $this->getModule(order::class);
273 }
274
275
276 }
277
278