Index: trunk/phase3/docs/hooks.txt |
— | — | @@ -572,6 +572,9 @@ |
573 | 573 | if implementing a custom editor, e.g. for a special namespace, |
574 | 574 | etc. |
575 | 575 | |
| 576 | +'DatabaseOraclePostInit': Called after initialising an Oracle database |
| 577 | +&$db: the DatabaseOracle object |
| 578 | + |
576 | 579 | 'NewDifferenceEngine': Called when a new DifferenceEngine object is made |
577 | 580 | $title: the diff page title (nullable) |
578 | 581 | &$oldId: the actual old Id to use in the diff |
— | — | @@ -924,6 +927,11 @@ |
925 | 928 | $opts: query options |
926 | 929 | $join_conds: JOIN conditions |
927 | 930 | |
| 931 | +'LocalisationCacheRecache': Called when loading the localisation data into cache |
| 932 | +$cache: The LocalisationCache object |
| 933 | +$code: language code |
| 934 | +&$alldata: The localisation data from core and extensions |
| 935 | + |
928 | 936 | 'LoginAuthenticateAudit': a login attempt for a valid user account either |
929 | 937 | succeeded or failed. No return data is accepted; this hook is for auditing only. |
930 | 938 | $user: the User object being authenticated against |
— | — | @@ -1371,6 +1379,10 @@ |
1372 | 1380 | no matches |
1373 | 1381 | $term: string of search term |
1374 | 1382 | |
| 1383 | +'SpecialUploadComplete': Called after successfully uploading a file from |
| 1384 | +Special:Upload |
| 1385 | +$form: The UploadForm object |
| 1386 | + |
1375 | 1387 | 'SpecialVersionExtensionTypes': called when generating the extensions credits, |
1376 | 1388 | use this to change the tables headers |
1377 | 1389 | $extTypes: associative array of extensions types |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -295,6 +295,7 @@ |
296 | 296 | * (bug 19827) Special:SpecialPages title is "Upload file |
297 | 297 | * (bug 19355) Added .xhtml, .xht to upload file extension blacklist |
298 | 298 | * (bug 19287) Workaround for lag on history page in Firefox 3.5 |
| 299 | +* (bug 19564) Updated docs/hooks.txt |
299 | 300 | |
300 | 301 | == API changes in 1.16 == |
301 | 302 | |