1 | <?php |
||
22 | class Concrete5 extends AbstractPlatform |
||
23 | { |
||
24 | /** |
||
25 | * The Concrete5 App object |
||
26 | * @var \Concrete\Core\Support\Facade\Application |
||
27 | */ |
||
28 | private $app = null; |
||
29 | |||
30 | /** |
||
31 | * (non-PHPdoc) |
||
32 | * @see \mithra62\Platforms\AbstractPlatform::getDbCredentials() |
||
33 | */ |
||
34 | public function getDbCredentials() |
||
48 | |||
49 | /** |
||
50 | * (non-PHPdoc) |
||
51 | * @see \mithra62\Platforms\AbstractPlatform::getEmailConfig() |
||
52 | */ |
||
53 | public function getEmailConfig() |
||
74 | |||
75 | /** |
||
76 | * (non-PHPdoc) |
||
77 | * @see \mithra62\Platforms\AbstractPlatform::getCurrentUrl() |
||
78 | */ |
||
79 | public function getCurrentUrl() |
||
83 | |||
84 | /** |
||
85 | * (non-PHPdoc) |
||
86 | * @see \mithra62\Platforms\AbstractPlatform::getSiteName() |
||
87 | */ |
||
88 | public function getSiteName() |
||
92 | |||
93 | /** |
||
94 | * (non-PHPdoc) |
||
95 | * @see \mithra62\Platforms\AbstractPlatform::getTimezone() |
||
96 | */ |
||
97 | public function getTimezone() |
||
101 | |||
102 | /** |
||
103 | * (non-PHPdoc) |
||
104 | * @see \mithra62\Platforms\AbstractPlatform::getSiteUrl() |
||
105 | */ |
||
106 | public function getSiteUrl() |
||
111 | |||
112 | /** |
||
113 | * (non-PHPdoc) |
||
114 | * @see \mithra62\Platforms\AbstractPlatform::getEncryptionKey() |
||
115 | */ |
||
116 | public function getEncryptionKey() |
||
120 | |||
121 | /** |
||
122 | * (non-PHPdoc) |
||
123 | * @see \mithra62\Platforms\AbstractPlatform::getConfigOverrides() |
||
124 | */ |
||
125 | public function getConfigOverrides() |
||
134 | |||
135 | /** |
||
136 | * (non-PHPdoc) |
||
137 | * @see \mithra62\Platforms\AbstractPlatform::redirect() |
||
138 | */ |
||
139 | public function redirect($url) |
||
143 | |||
144 | /** |
||
145 | * (non-PHPdoc) |
||
146 | * |
||
147 | * @see \mithra62\Platforms\AbstractPlatform::getPost() |
||
148 | */ |
||
149 | public function getPost($key, $default = false) |
||
159 | |||
160 | /** |
||
161 | * Returns an instance of the Concrete5 app object |
||
162 | * @return \Concrete\Core\Support\Facade\Application |
||
163 | */ |
||
164 | private function getApp() |
||
172 | |||
173 | } |
This check looks for access to properties that are not accessible from the current context.
If you need to make a property accessible to another context you can either raise its visibility level or provide an accessible getter in the defining class.