MediaWiki  1.23.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...
 
 getLang ()
 
 getLanguage ()
 Get the Language object. More...
 
 getOutput ()
 Get the OutputPage object. More...
 
 getRequest ()
 Get the WebRequest object. More...
 
 getSkin ()
 Get the Skin 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...
 
 setLang ( $l)
 Set the Language 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 ( $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
 exportSession ()
 Export the resolved user IP, HTTP headers, user ID, and session ID. More...
 
 getContext ()
 Get the RequestContext object. More...
 
 setContext (IContextSource $context)
 Set the IContextSource object. More...
 

Private Attributes

Config $config
 
Language $lang
 
OutputPage $output
 
WebRequest $request
 
Skin $skin
 
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.

Definition at line 32 of file DerivativeContext.php.

Constructor & Destructor Documentation

◆ __construct()

DerivativeContext::__construct ( IContextSource  $context)

Constructor.

Parameters
IContextSource$contextContext to inherit from

Definition at line 69 of file DerivativeContext.php.

References ContextSource\setContext().

Member Function Documentation

◆ canUseWikiPage()

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

Reimplemented from ContextSource.

Definition at line 151 of file DerivativeContext.php.

References ContextSource\getContext(), and title.

◆ getConfig()

DerivativeContext::getConfig ( )

Get the Config object.

Returns
Config

Reimplemented from ContextSource.

Definition at line 87 of file DerivativeContext.php.

References $config, and ContextSource\getContext().

◆ getLang()

DerivativeContext::getLang ( )
Deprecated:
since 1.19 Use getLanguage instead
Returns
Language

Reimplemented from ContextSource.

Definition at line 266 of file DerivativeContext.php.

References getLanguage(), and wfDeprecated().

◆ getLanguage()

DerivativeContext::getLanguage ( )

Get the Language object.

Returns
Language
Since
1.19

Reimplemented from ContextSource.

Definition at line 277 of file DerivativeContext.php.

References $lang, and ContextSource\getContext().

Referenced by getLang().

◆ getOutput()

DerivativeContext::getOutput ( )

Get the OutputPage object.

Returns
OutputPage

Reimplemented from ContextSource.

Definition at line 202 of file DerivativeContext.php.

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

◆ getRequest()

DerivativeContext::getRequest ( )

Get the WebRequest object.

Returns
WebRequest

Reimplemented from ContextSource.

Definition at line 109 of file DerivativeContext.php.

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

◆ getSkin()

DerivativeContext::getSkin ( )

Get the Skin object.

Returns
Skin

Reimplemented from ContextSource.

Definition at line 300 of file DerivativeContext.php.

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

◆ getTitle()

DerivativeContext::getTitle ( )

Get the Title object.

Returns
Title

Reimplemented from ContextSource.

Definition at line 135 of file DerivativeContext.php.

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

◆ getUser()

DerivativeContext::getUser ( )

Get the User object.

Returns
User

Reimplemented from ContextSource.

Definition at line 224 of file DerivativeContext.php.

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

◆ getWikiPage()

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

Reimplemented from ContextSource.

Definition at line 180 of file DerivativeContext.php.

References $wikipage, and ContextSource\getContext().

◆ msg()

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
StringMessage name
Variablenumber of message arguments
Returns
Message

Reimplemented from ContextSource.

Definition at line 319 of file DerivativeContext.php.

References $args.

◆ setConfig()

DerivativeContext::setConfig ( Config  $s)

Set the SiteConfiguration object.

Parameters
Config$s

Definition at line 78 of file DerivativeContext.php.

References $s.

◆ setLang()

DerivativeContext::setLang (   $l)

Set the Language object.

Deprecated:
since 1.19 Use setLanguage instead
Parameters
Language | string$lLanguage instance or language code

Definition at line 238 of file DerivativeContext.php.

References setLanguage(), and wfDeprecated().

◆ setLanguage()

DerivativeContext::setLanguage (   $l)

Set the Language object.

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

Definition at line 250 of file DerivativeContext.php.

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

Referenced by setLang().

◆ setOutput()

DerivativeContext::setOutput ( OutputPage  $o)

Set the OutputPage object.

Parameters
OutputPage$o

Definition at line 193 of file DerivativeContext.php.

References output().

◆ setRequest()

DerivativeContext::setRequest ( WebRequest  $r)

Set the WebRequest object.

Parameters
WebRequest$r

Definition at line 100 of file DerivativeContext.php.

References request.

◆ setSkin()

DerivativeContext::setSkin ( Skin  $s)

Set the Skin object.

Parameters
Skin$s

Definition at line 290 of file DerivativeContext.php.

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

◆ setTitle()

DerivativeContext::setTitle (   $t)

Set the Title object.

Parameters
Title$t
Exceptions
MWException

Definition at line 123 of file DerivativeContext.php.

References $t, and title.

◆ setUser()

DerivativeContext::setUser ( User  $u)

Set the User object.

Parameters
User$u

Definition at line 215 of file DerivativeContext.php.

References user.

◆ setWikiPage()

DerivativeContext::setWikiPage ( WikiPage  $p)

Set the WikiPage object.

Since
1.19
Parameters
WikiPage$p

Definition at line 167 of file DerivativeContext.php.

Member Data Documentation

◆ $config

Config DerivativeContext::$config
private

Definition at line 63 of file DerivativeContext.php.

Referenced by getConfig().

◆ $lang

Language DerivativeContext::$lang
private

Definition at line 55 of file DerivativeContext.php.

Referenced by getLanguage().

◆ $output

OutputPage DerivativeContext::$output
private

Definition at line 47 of file DerivativeContext.php.

Referenced by getOutput().

◆ $request

WebRequest DerivativeContext::$request
private

Definition at line 35 of file DerivativeContext.php.

Referenced by getRequest().

◆ $skin

Skin DerivativeContext::$skin
private

Definition at line 59 of file DerivativeContext.php.

Referenced by getSkin().

◆ $title

Title DerivativeContext::$title
private

Definition at line 39 of file DerivativeContext.php.

Referenced by getTitle().

◆ $user

User DerivativeContext::$user
private

Definition at line 51 of file DerivativeContext.php.

Referenced by getUser().

◆ $wikipage

WikiPage DerivativeContext::$wikipage
private

Definition at line 43 of file DerivativeContext.php.

Referenced by getWikiPage().


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