MediaWiki  1.28.1
DerivativeContext Class Reference

An IContextSource implementation which will inherit context from another source but allow individual pieces of context to be changed locally eg: A ContextSource that can inherit from the main RequestContext but have a different Title instance set on it. More...

Inheritance diagram for DerivativeContext:
Collaboration diagram for DerivativeContext:

Public Member Functions

 __construct (IContextSource $context)
 Constructor. More...
 
 canUseWikiPage ()
 Check whether a WikiPage object can be get with getWikiPage(). More...
 
 getConfig ()
 Get the Config object. More...
 
 getLanguage ()
 Get the Language object. More...
 
 getOutput ()
 Get the OutputPage object. More...
 
 getRequest ()
 Get the WebRequest object. More...
 
 getSkin ()
 Get the Skin object. More...
 
 getStats ()
 Get the stats object. More...
 
 getTiming ()
 Get the timing object. More...
 
 getTitle ()
 Get the Title object. More...
 
 getUser ()
 Get the User object. More...
 
 getWikiPage ()
 Get the WikiPage object. More...
 
 msg ()
 Get a message using the current context. More...
 
 setConfig (Config $s)
 Set the SiteConfiguration object. More...
 
 setLanguage ($l)
 Set the Language object. More...
 
 setOutput (OutputPage $o)
 Set the OutputPage object. More...
 
 setRequest (WebRequest $r)
 Set the WebRequest object. More...
 
 setSkin (Skin $s)
 Set the Skin object. More...
 
 setTitle (Title $t)
 Set the Title object. More...
 
 setUser (User $u)
 Set the User object. More...
 
 setWikiPage (WikiPage $p)
 Set the WikiPage object. More...
 
- Public Member Functions inherited from ContextSource
 canUseWikiPage ()
 Check whether a WikiPage object can be get with getWikiPage(). More...
 
 exportSession ()
 Export the resolved user IP, HTTP headers, user ID, and session ID. More...
 
 getConfig ()
 Get the Config object. More...
 
 getContext ()
 Get the base IContextSource object. More...
 
 getLanguage ()
 Get the Language object. More...
 
 getOutput ()
 Get the OutputPage object. More...
 
 getRequest ()
 Get the WebRequest object. More...
 
 getSkin ()
 Get the Skin object. More...
 
 getStats ()
 Get the Stats object. More...
 
 getTiming ()
 Get the Timing object. More...
 
 getTitle ()
 Get the Title object. More...
 
 getUser ()
 Get the User object. More...
 
 getWikiPage ()
 Get the WikiPage object. More...
 
 msg ()
 Get a Message object with context set Parameters are the same as wfMessage() More...
 
 setContext (IContextSource $context)
 Set the IContextSource object. More...
 

Private Attributes

Config $config
 
Language $lang
 
OutputPage $output
 
WebRequest $request
 
Skin $skin
 
Timing $timing
 
Title $title
 
User $user
 
WikiPage $wikipage
 

Detailed Description

An IContextSource implementation which will inherit context from another source but allow individual pieces of context to be changed locally eg: A ContextSource that can inherit from the main RequestContext but have a different Title instance set on it.

Since
1.19

Definition at line 31 of file DerivativeContext.php.

Constructor & Destructor Documentation

DerivativeContext::__construct ( IContextSource  $context)

Constructor.

Parameters
IContextSource$contextContext to inherit from

Definition at line 81 of file DerivativeContext.php.

References ContextSource\setContext().

Member Function Documentation

DerivativeContext::canUseWikiPage ( )

Check whether a WikiPage object can be get with getWikiPage().

Callers should expect that an exception is thrown from getWikiPage() if this method returns false.

Since
1.19
Returns
bool

Implements IContextSource.

Definition at line 183 of file DerivativeContext.php.

References ContextSource\getContext(), and title.

DerivativeContext::getConfig ( )

Get the Config object.

Returns
Config

Implements IContextSource.

Definition at line 99 of file DerivativeContext.php.

References $config, and ContextSource\getContext().

DerivativeContext::getLanguage ( )

Get the Language object.

Returns
Language
Since
1.19

Implements IContextSource.

Definition at line 289 of file DerivativeContext.php.

References $lang, and ContextSource\getContext().

DerivativeContext::getOutput ( )

Get the OutputPage object.

Returns
OutputPage

Implements IContextSource.

Definition at line 234 of file DerivativeContext.php.

References $output, ContextSource\getContext(), and output().

DerivativeContext::getRequest ( )

Get the WebRequest object.

Returns
WebRequest

Implements IContextSource.

Definition at line 145 of file DerivativeContext.php.

References $request, ContextSource\getContext(), and request.

Referenced by SpecialPageExecutor\setEditTokenFromUser().

DerivativeContext::getSkin ( )

Get the Skin object.

Returns
Skin

Implements IContextSource.

Definition at line 312 of file DerivativeContext.php.

References $skin, ContextSource\getContext(), and skin().

DerivativeContext::getStats ( )

Get the stats object.

Deprecated:
since 1.27 use a StatsdDataFactory from MediaWikiServices (preferably injected)
Returns
StatsdDataFactory

Implements IContextSource.

Definition at line 114 of file DerivativeContext.php.

DerivativeContext::getTiming ( )

Get the timing object.

Returns
Timing

Implements IContextSource.

Definition at line 123 of file DerivativeContext.php.

References $timing, and ContextSource\getContext().

DerivativeContext::getTitle ( )

Get the Title object.

Returns
Title|null

Implements IContextSource.

Definition at line 167 of file DerivativeContext.php.

References $title, ContextSource\getContext(), and title.

DerivativeContext::getUser ( )

Get the User object.

Returns
User

Implements IContextSource.

Definition at line 256 of file DerivativeContext.php.

References $user, ContextSource\getContext(), and user.

Referenced by SpecialPageExecutor\setEditTokenFromUser().

DerivativeContext::getWikiPage ( )

Get the WikiPage object.

May throw an exception if there's no Title object set or the Title object belongs to a special namespace that doesn't have WikiPage, so use first canUseWikiPage() to check whether this method can be called safely.

Since
1.19
Returns
WikiPage

Implements IContextSource.

Definition at line 212 of file DerivativeContext.php.

References $wikipage, and ContextSource\getContext().

DerivativeContext::msg ( )

Get a message using the current context.

This can't just inherit from ContextSource, since then it would set only the original context, and not take into account any changes.

Parameters
mixed$args,...Arguments to wfMessage
Returns
Message

Implements IContextSource.

Definition at line 330 of file DerivativeContext.php.

References $args.

DerivativeContext::setConfig ( Config  $s)

Set the SiteConfiguration object.

Parameters
Config$s

Implements MutableContext.

Definition at line 90 of file DerivativeContext.php.

References $s.

DerivativeContext::setLanguage (   $l)

Set the Language object.

Parameters
Language | string$lLanguage instance or language code
Exceptions
MWException
Since
1.19

Implements MutableContext.

Definition at line 271 of file DerivativeContext.php.

References Language\factory(), and RequestContext\sanitizeLangCode().

DerivativeContext::setOutput ( OutputPage  $o)

Set the OutputPage object.

Parameters
OutputPage$o

Implements MutableContext.

Definition at line 225 of file DerivativeContext.php.

References output().

DerivativeContext::setRequest ( WebRequest  $r)

Set the WebRequest object.

Parameters
WebRequest$r

Implements MutableContext.

Definition at line 136 of file DerivativeContext.php.

References request.

DerivativeContext::setSkin ( Skin  $s)

Set the Skin object.

Parameters
Skin$s

Implements MutableContext.

Definition at line 302 of file DerivativeContext.php.

References $s, ContextSource\setContext(), and skin().

DerivativeContext::setTitle ( Title  $t)

Set the Title object.

Parameters
Title$t

Implements MutableContext.

Definition at line 158 of file DerivativeContext.php.

References $t, and title.

DerivativeContext::setUser ( User  $u)

Set the User object.

Parameters
User$u

Implements MutableContext.

Definition at line 247 of file DerivativeContext.php.

References user.

DerivativeContext::setWikiPage ( WikiPage  $p)

Set the WikiPage object.

Since
1.19
Parameters
WikiPage$p

Implements MutableContext.

Definition at line 199 of file DerivativeContext.php.

Member Data Documentation

Config DerivativeContext::$config
private

Definition at line 70 of file DerivativeContext.php.

Referenced by getConfig().

Language DerivativeContext::$lang
private

Definition at line 60 of file DerivativeContext.php.

Referenced by getLanguage().

OutputPage DerivativeContext::$output
private

Definition at line 50 of file DerivativeContext.php.

Referenced by getOutput().

WebRequest DerivativeContext::$request
private

Definition at line 35 of file DerivativeContext.php.

Referenced by getRequest().

Skin DerivativeContext::$skin
private

Definition at line 65 of file DerivativeContext.php.

Referenced by getSkin().

Timing DerivativeContext::$timing
private

Definition at line 75 of file DerivativeContext.php.

Referenced by getTiming().

Title DerivativeContext::$title
private

Definition at line 40 of file DerivativeContext.php.

Referenced by getTitle().

User DerivativeContext::$user
private

Definition at line 55 of file DerivativeContext.php.

Referenced by getUser().

WikiPage DerivativeContext::$wikipage
private

Definition at line 45 of file DerivativeContext.php.

Referenced by getWikiPage().


The documentation for this class was generated from the following file: