* fixed ipblocks.ipb_by_text field, removed default blank not null (fixed install...
[mediawiki.git] / includes / context / ContextSource.php
blob6d423e9af242d37d113feebfdd2d79996c478b24
1 <?php
2 /**
3 * Request-dependant objects containers.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
20 * @since 1.18
22 * @author Happy-melon
23 * @file
26 /**
27 * The simplest way of implementing IContextSource is to hold a RequestContext as a
28 * member variable and provide accessors to it.
30 abstract class ContextSource implements IContextSource {
32 /**
33 * @var IContextSource
35 private $context;
37 /**
38 * Get the RequestContext object
40 * @return RequestContext
42 public function getContext() {
43 if ( $this->context === null ) {
44 $class = get_class( $this );
45 wfDebug( __METHOD__ . " ($class): called and \$context is null. Using RequestContext::getMain() for sanity\n" );
46 $this->context = RequestContext::getMain();
48 return $this->context;
51 /**
52 * Set the IContextSource object
54 * @param $context IContextSource
56 public function setContext( IContextSource $context ) {
57 $this->context = $context;
60 /**
61 * Get the WebRequest object
63 * @return WebRequest
65 public function getRequest() {
66 return $this->getContext()->getRequest();
69 /**
70 * Get the Title object
72 * @return Title
74 public function getTitle() {
75 return $this->getContext()->getTitle();
78 /**
79 * Get the OutputPage object
81 * @return OutputPage object
83 public function getOutput() {
84 return $this->getContext()->getOutput();
87 /**
88 * Get the User object
90 * @return User
92 public function getUser() {
93 return $this->getContext()->getUser();
96 /**
97 * Get the Language object
99 * @return Language
101 public function getLang() {
102 return $this->getContext()->getLang();
106 * Get the Skin object
108 * @return Skin
110 public function getSkin() {
111 return $this->getContext()->getSkin();
115 * Get a Message object with context set
116 * Parameters are the same as wfMessage()
118 * @return Message object
120 public function msg( /* $args */ ) {
121 $args = func_get_args();
122 return call_user_func_array( array( $this->getContext(), 'msg' ), $args );