@@ -496,7 +496,7 @@ |
||
496 | 496 | * |
497 | 497 | * @access protected |
498 | 498 | * |
499 | - * @param array $value Array of (nested arrays of) strings |
|
499 | + * @param string $value Array of (nested arrays of) strings |
|
500 | 500 | * |
501 | 501 | * @return array|string The input array with stripshlashes applied to it |
502 | 502 | */ |
@@ -189,6 +189,10 @@ |
||
189 | 189 | |
190 | 190 | return XoopsCache::delete($key); |
191 | 191 | } |
192 | + |
|
193 | + /** |
|
194 | + * @param string $option |
|
195 | + */ |
|
192 | 196 | public function getOptions($option = null, $V = "value") |
193 | 197 | { |
194 | 198 | $V = strtolower($V); |
@@ -35,6 +35,9 @@ discard block |
||
35 | 35 | public $cookiePrefix = ""; |
36 | 36 | public $groupList; |
37 | 37 | |
38 | + /** |
|
39 | + * @param boolean $debug |
|
40 | + */ |
|
38 | 41 | protected function __construct($debug) |
39 | 42 | { |
40 | 43 | $this->debug = $debug; |
@@ -108,6 +111,11 @@ discard block |
||
108 | 111 | return $this->groupList; |
109 | 112 | } |
110 | 113 | |
114 | + /** |
|
115 | + * @param string $name |
|
116 | + * |
|
117 | + * @return integer |
|
118 | + */ |
|
111 | 119 | public function getConfig($name = null) |
112 | 120 | { |
113 | 121 | if ($this->config == null) { |
@@ -139,6 +147,9 @@ discard block |
||
139 | 147 | return $this->config[$name]; |
140 | 148 | } |
141 | 149 | |
150 | + /** |
|
151 | + * @param string $name |
|
152 | + */ |
|
142 | 153 | public function &getHandler($name) |
143 | 154 | { |
144 | 155 | if (!isset($this->handler[$name . '_handler'])) { |