MediaWiki REL1_30
MutableContext.php
Go to the documentation of this file.
1<?php
25interface MutableContext {
31 public function setConfig( Config $c );
32
38 public function setRequest( WebRequest $r );
39
45 public function setTitle( Title $t );
46
52 public function setWikiPage( WikiPage $p );
53
59 public function setOutput( OutputPage $o );
60
66 public function setUser( User $u );
67
73 public function setLanguage( $l );
74
80 public function setSkin( Skin $s );
81
82}
This class should be covered by a general architecture document which does not exist as of January 20...
The main skin class which provides methods and properties for all other skins.
Definition Skin.php:36
Represents a title within MediaWiki.
Definition Title.php:39
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:51
The WebRequest class encapsulates getting at data passed in the URL or via a POSTed form stripping il...
Class representing a MediaWiki article and history.
Definition WikiPage.php:37
Interface for configuration instances.
Definition Config.php:28
setConfig(Config $c)
Set the Config object.
setLanguage( $l)
Set the Language object.
setRequest(WebRequest $r)
Set the WebRequest object.
setTitle(Title $t)
Set the Title object.
setWikiPage(WikiPage $p)
Set the WikiPage object.
setSkin(Skin $s)
Set the Skin object.
setOutput(OutputPage $o)
Set the OutputPage object.
setUser(User $u)
Set the User object.