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
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
{
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
;
52 * Set the IContextSource object
55 * @param $context IContextSource
57 public function setContext( IContextSource
$context ) {
58 $this->context
= $context;
62 * Get the WebRequest object
67 public function getRequest() {
68 return $this->getContext()->getRequest();
72 * Get the Title object
77 public function getTitle() {
78 return $this->getContext()->getTitle();
82 * Check whether a WikiPage object can be get with getWikiPage().
83 * Callers should expect that an exception is thrown from getWikiPage()
84 * if this method returns false.
89 public function canUseWikiPage() {
90 return $this->getContext()->canUseWikiPage();
94 * Get the WikiPage object.
95 * May throw an exception if there's no Title object set or the Title object
96 * belongs to a special namespace that doesn't have WikiPage, so use first
97 * canUseWikiPage() to check whether this method can be called safely.
102 public function getWikiPage() {
103 return $this->getContext()->getWikiPage();
107 * Get the OutputPage object
110 * @return OutputPage object
112 public function getOutput() {
113 return $this->getContext()->getOutput();
117 * Get the User object
122 public function getUser() {
123 return $this->getContext()->getUser();
127 * Get the Language object
129 * @deprecated 1.19 Use getLanguage instead
132 public function getLang() {
133 wfDeprecated( __METHOD__
, '1.19' );
134 return $this->getLanguage();
138 * Get the Language object
143 public function getLanguage() {
144 return $this->getContext()->getLanguage();
148 * Get the Skin object
153 public function getSkin() {
154 return $this->getContext()->getSkin();
158 * Get a Message object with context set
159 * Parameters are the same as wfMessage()
162 * @return Message object
164 public function msg( /* $args */ ) {
165 $args = func_get_args();
166 return call_user_func_array( array( $this->getContext(), 'msg' ), $args );