Handleiding:IContextSource.php
Appearance
| MediaWiki bestand: IContextSource.php | |
|---|---|
| Locatie: | includes/context/ (includes/Context/ in 1.46 of later) |
| Broncode: | master • 1.44.2 • 1.43.5 • 1.39.15 |
| Classes: | MediaWiki\Context\IContextSource |
Het bestand IContextSource.php bevat de IContextSource interface voor objecten die een context kunnen geven aan een request.
Voorbeeld
Misschien wilt u toegang tot IContextSource als u een API schrijft die hints over type geeft bij het gebruik van argumenten of instanceof-controles uitvoert:
if ( $arg instanceof IContextSource ) {
// Behandel $arg als een context object
}
function foo( IContextSource $context ) {
// Gebruik $context als de context van het verzoek
}