Index: trunk/extensions/SemanticResultFormats/iCalendar/SRF_iCalendar.php |
— | — | @@ -166,5 +166,12 @@ |
167 | 167 | return $result; |
168 | 168 | } |
169 | 169 | |
| 170 | + public function getParameters() { |
| 171 | + $params = parent::exportFormatParameters(); |
| 172 | + $params[] = array('name' => 'icalendartitle', 'type' => 'string', 'description' => wfMsg('srf_paramdesc_icalendartitle')); |
| 173 | + $params[] = array('name' => 'icalendardescription', 'type' => 'string', 'description' => wfMsg('srf_paramdesc_icalendardescription')); |
| 174 | + return $params; |
| 175 | + } |
| 176 | + |
170 | 177 | } |
171 | 178 | |