@@ -92,6 +92,9 @@ |
||
92 | 92 | return $returnValue; |
93 | 93 | } |
94 | 94 | |
95 | + /** |
|
96 | + * @param boolean $showall |
|
97 | + */ |
|
95 | 98 | public function getRS($selectedId, $showall) |
96 | 99 | { |
97 | 100 | if ($showall != false) { |
@@ -112,6 +112,9 @@ discard block |
||
112 | 112 | } |
113 | 113 | } |
114 | 114 | |
115 | + /** |
|
116 | + * @return string |
|
117 | + */ |
|
115 | 118 | public static function landFromLocid($locid) |
116 | 119 | { |
117 | 120 | if (!is_numeric($locid)) { |
@@ -139,6 +142,9 @@ discard block |
||
139 | 142 | } |
140 | 143 | } |
141 | 144 | |
145 | + /** |
|
146 | + * @return string |
|
147 | + */ |
|
142 | 148 | public static function regierungsbezirkFromLocid($locid) |
143 | 149 | { |
144 | 150 | if (!is_numeric($locid)) { |
@@ -165,6 +171,9 @@ discard block |
||
165 | 171 | } |
166 | 172 | } |
167 | 173 | |
174 | + /** |
|
175 | + * @return string |
|
176 | + */ |
|
168 | 177 | public static function landkreisFromLocid($locid) |
169 | 178 | { |
170 | 179 | if (!is_numeric($locid)) { |
@@ -164,6 +164,9 @@ discard block |
||
164 | 164 | self::$aLabels[$name] = unserialize($serialized); |
165 | 165 | } |
166 | 166 | |
167 | + /** |
|
168 | + * @param string $name |
|
169 | + */ |
|
167 | 170 | public static function getLabels($name) |
168 | 171 | { |
169 | 172 | if (isset(self::$aLabels[$name])) { |
@@ -173,6 +176,9 @@ discard block |
||
173 | 176 | return false; |
174 | 177 | } |
175 | 178 | |
179 | + /** |
|
180 | + * @param string $name |
|
181 | + */ |
|
176 | 182 | public static function getLabelValue($name, $id) |
177 | 183 | { |
178 | 184 | if (isset(self::$aLabels[$name])) { |
@@ -122,12 +122,19 @@ |
||
122 | 122 | } |
123 | 123 | |
124 | 124 | |
125 | +/** |
|
126 | + * @param integer $cache_id |
|
127 | + * @param integer $old_logtype |
|
128 | + */ |
|
125 | 129 | function logtype_ok($cache_id, $logtype_id, $old_logtype, $statusLogs = true) |
126 | 130 | { |
127 | 131 | return in_array($logtype_id, get_cache_log_types($cache_id, $old_logtype, $statusLogs)); |
128 | 132 | } |
129 | 133 | |
130 | 134 | |
135 | +/** |
|
136 | + * @param integer $cache_id |
|
137 | + */ |
|
131 | 138 | function teamcomment_allowed($cache_id, $logtype_id, $old_teamcomment = false) |
132 | 139 | { |
133 | 140 | global $login, $opt; |
@@ -9,6 +9,9 @@ |
||
9 | 9 | |
10 | 10 | public $reUser; |
11 | 11 | |
12 | + /** |
|
13 | + * @param integer $nNewUserId |
|
14 | + */ |
|
12 | 15 | public function __construct($nNewUserId) |
13 | 16 | { |
14 | 17 | $this->reUser = new rowEditor('user'); |
@@ -27,6 +27,10 @@ |
||
27 | 27 | return $aItems; |
28 | 28 | } |
29 | 29 | |
30 | +/** |
|
31 | + * @param integer $parentId |
|
32 | + * @param integer $sublevel |
|
33 | + */ |
|
30 | 34 | function pAppendSites($parentId, $viewall, $sublevel, &$aItems) |
31 | 35 | { |
32 | 36 | global $opt; |
@@ -22,6 +22,10 @@ |
||
22 | 22 | $this->longitude = $longitude; |
23 | 23 | } |
24 | 24 | |
25 | + /** |
|
26 | + * @param boolean $latHem |
|
27 | + * @param boolean $lonHem |
|
28 | + */ |
|
25 | 29 | public static function fromHemDegMin($latHem, $latDeg, $latMin, $lonHem, $lonDeg, $lonMin) |
26 | 30 | { |
27 | 31 | $latitude = self::hemDegMinToFloat($latHem, $latDeg, $latMin); |
@@ -131,6 +131,9 @@ |
||
131 | 131 | sql_free_result($rs); |
132 | 132 | } |
133 | 133 | |
134 | + /** |
|
135 | + * @param string $comment |
|
136 | + */ |
|
134 | 137 | public function archiveCache($cache_id, $comment, $months = 0) |
135 | 138 | { |
136 | 139 | global $login, $translate; |
@@ -82,6 +82,10 @@ discard block |
||
82 | 82 | return preg_match("/^[0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2}$/", $datetime); |
83 | 83 | } |
84 | 84 | |
85 | + /** |
|
86 | + * @param integer $level |
|
87 | + * @param string $text |
|
88 | + */ |
|
85 | 89 | private static function message($level, $text) |
86 | 90 | { |
87 | 91 | echo str_repeat(' ', 2 * $level) . $text . "\n"; |
@@ -94,6 +98,11 @@ discard block |
||
94 | 98 | ' AND `' . $table . '`.`' . $field . "` <= '" . sql_escape($this->toDateTime) . "'"; |
95 | 99 | } |
96 | 100 | |
101 | + /** |
|
102 | + * @param string $table |
|
103 | + * @param string $dateField |
|
104 | + * @param string $description |
|
105 | + */ |
|
97 | 106 | private function showObjectCount($table, $dateField, $description, $andWhere = '') |
98 | 107 | { |
99 | 108 | $objectCount = sql_value( |