1 | <?php |
||
22 | class Console extends AbstractPlatform |
||
23 | { |
||
24 | |||
25 | /** |
||
26 | * The set settings data from the configuration file |
||
27 | * |
||
28 | * @var array |
||
29 | */ |
||
30 | protected $config = array(); |
||
31 | |||
32 | /** |
||
33 | * Sets the config data from an external source |
||
34 | * |
||
35 | * @param array $data |
||
36 | * @return JaegerApp\Platform\Console |
||
37 | */ |
||
38 | public function setConfig(array $data) |
||
44 | |||
45 | /** |
||
46 | * (non-PHPdoc) |
||
47 | * |
||
48 | * @see \JaegerApp\Platforms\AbstractPlatform::getDbCredentials() |
||
49 | */ |
||
50 | public function getDbCredentials() |
||
54 | |||
55 | /** |
||
56 | * (non-PHPdoc) |
||
57 | * |
||
58 | * @see \JaegerApp\Platforms\AbstractPlatform::getEmailConfig() |
||
59 | */ |
||
60 | public function getEmailConfig() |
||
64 | |||
65 | /** |
||
66 | * (non-PHPdoc) |
||
67 | * |
||
68 | * @see \JaegerApp\Platforms\AbstractPlatform::getCurrentUrl() |
||
69 | */ |
||
70 | public function getCurrentUrl() |
||
74 | |||
75 | /** |
||
76 | * (non-PHPdoc) |
||
77 | * |
||
78 | * @see \JaegerApp\Platforms\AbstractPlatform::getSiteName() |
||
79 | */ |
||
80 | public function getSiteName() |
||
84 | |||
85 | /** |
||
86 | * (non-PHPdoc) |
||
87 | * |
||
88 | * @see \JaegerApp\Platforms\AbstractPlatform::getTimezone() |
||
89 | */ |
||
90 | public function getTimezone() |
||
94 | |||
95 | /** |
||
96 | * (non-PHPdoc) |
||
97 | * |
||
98 | * @see \JaegerApp\Platforms\AbstractPlatform::getSiteUrl() |
||
99 | */ |
||
100 | public function getSiteUrl() |
||
104 | |||
105 | /** |
||
106 | * (non-PHPdoc) |
||
107 | * |
||
108 | * @see \JaegerApp\Platforms\AbstractPlatform::getEncryptionKey() |
||
109 | */ |
||
110 | public function getEncryptionKey() |
||
114 | |||
115 | /** |
||
116 | * (non-PHPdoc) |
||
117 | * |
||
118 | * @see \JaegerApp\Platforms\AbstractPlatform::getConfigOverrides() |
||
119 | */ |
||
120 | public function getConfigOverrides() |
||
124 | |||
125 | /** |
||
126 | * (non-PHPdoc) |
||
127 | * @param string $url |
||
128 | * @see \JaegerApp\Platforms\AbstractPlatform::redirect() |
||
129 | */ |
||
130 | public function redirect($url) |
||
132 | |||
133 | /** |
||
134 | * (non-PHPdoc) |
||
135 | * @param string $key |
||
136 | * @param string $default |
||
137 | * @see \JaegerApp\Platforms\AbstractPlatform::getPost() |
||
138 | */ |
||
139 | public function getPost($key, $default = false) |
||
141 | } |