1 <?php
2
3 namespace rpf\extension;
4 use rpf\extension\module\domainExport;
5 use rpf\extension\module\index;
6 use rpf\extension\module\mgntRatioExport;
7 use rpf\system\module;
8
9 10 11 12 13 14 15 16 17
18 class extension extends module
19 {
20 21 22
23 public function getDomainExport()
24 {
25 return $this->getModule(domainExport::class);
26 }
27
28 29 30
31 public function getIndex()
32 {
33 return $this->getModule(index::class);
34 }
35
36 37 38
39 public function getInvoiceTextExport()
40 {
41 return $this->getModule(invoiceTextExport::class);
42 }
43
44 45 46
47 public function getMailExport()
48 {
49 return $this->getModule(mailExport::class);
50 }
51
52 53 54
55 public function getMgntRatioExport()
56 {
57 return $this->getModule(mgntRatioExport::class);
58 }
59 }