Index: trunk/extensions/Configure/Configure.api.php |
— | — | @@ -356,6 +356,14 @@ |
357 | 357 | 'group' => 'Whether to group settings', |
358 | 358 | ); |
359 | 359 | } |
| 360 | + |
| 361 | + protected function getPossibleErrors() { |
| 362 | + return array_merge( parent::getPossibleErrors(), array( |
| 363 | + array( 'code' => 'noconf', 'info' => 'You need to call efConfigureSetup() to use this module' ), |
| 364 | + array( 'code' => 'noversion', 'info' => 'version not found' ), |
| 365 | + array( 'code' => 'nowiki', 'info' => 'wiki not found in version' ), |
| 366 | + ) ); |
| 367 | + } |
360 | 368 | |
361 | 369 | protected function getDescription() { |
362 | 370 | return 'Configure extension\'s API module'; |