Index: trunk/extensions/Maps/includes/parserHooks/Maps_Geocode.php |
— | — | @@ -123,6 +123,18 @@ |
124 | 124 | } |
125 | 125 | |
126 | 126 | /** |
| 127 | + * Returns the parser function otpions. |
| 128 | + * @see ParserHook::getFunctionOptions |
| 129 | + * |
| 130 | + * @since 0.7 |
| 131 | + * |
| 132 | + * @return array |
| 133 | + */ |
| 134 | + protected function getFunctionOptions() { |
| 135 | + return array(); |
| 136 | + } |
| 137 | + |
| 138 | + /** |
127 | 139 | * Renders and returns the output. |
128 | 140 | * @see ParserHook::render |
129 | 141 | * |
— | — | @@ -148,7 +160,7 @@ |
149 | 161 | else { |
150 | 162 | $output = htmlspecialchars( wfMsg( 'maps-geocoder-not-available' ) ); |
151 | 163 | } |
152 | | - |
| 164 | + |
153 | 165 | return $output; |
154 | 166 | } |
155 | 167 | |