Merge "Apply correct line-height to diffs"
[lhc/web/wiklou.git] / includes / DeprecatedGlobal.php
1 <?php
2 /**
3 * Delayed loading of deprecated global objects.
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 */
22
23 /**
24 * Class to allow throwing wfDeprecated warnings
25 * when people use globals that we do not want them to.
26 */
27
28 class DeprecatedGlobal extends StubObject {
29 // The m's are to stay consistent with parent class.
30 protected $mRealValue, $mVersion;
31
32 function __construct( $name, $realValue, $version = false ) {
33 parent::__construct( $name );
34 $this->mRealValue = $realValue;
35 $this->mVersion = $version;
36 }
37
38 // @codingStandardsIgnoreStart
39 // PSR2.Methods.MethodDeclaration.Underscore
40 // PSR2.Classes.PropertyDeclaration.ScopeMissing
41 function _newObject() {
42
43 /* Put the caller offset for wfDeprecated as 6, as
44 * that gives the function that uses this object, since:
45 * 1 = this function ( _newObject )
46 * 2 = StubObject::_unstub
47 * 3 = StubObject::_call
48 * 4 = StubObject::__call
49 * 5 = DeprecatedGlobal::<method of global called>
50 * 6 = Actual function using the global.
51 * Of course its theoretically possible to have other call
52 * sequences for this method, but that seems to be
53 * rather unlikely.
54 */
55 wfDeprecated( '$' . $this->mGlobal, $this->mVersion, false, 6 );
56 return $this->mRealValue;
57 }
58 // @codingStandardsIgnoreEnd
59 }