Handleiding:IContextSource.php
MediaWiki bestand: IContextSource.php | |
---|---|
Locatie: | includes/context/ |
Broncode: | master • 1.42.3 • 1.41.4 • 1.39.10 |
Classes: | IContextSource |
Het bestand IContextSource.php bevat de IContextSource
interface voor objecten die een context kunnen geven aan een request.
Example
You may want to access IContextSource if you are writing an API which uses type hinting in the arguments or makes instanceof
checks:
if ( $arg instanceof IContextSource ) {
// Behandel $arg als een context object
}
function foo( IContextSource $context ) {
// Gebruik $context als de context van het verzoek
}