Merge "Accept BCP 47 codes in LanguageConverter rules"
[lhc/web/wiklou.git] / includes / parser / ParserFactory.php
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @file
19 * @ingroup Parser
20 */
21
22 use MediaWiki\Special\SpecialPageFactory;
23
24 /**
25 * @since 1.32
26 */
27 class ParserFactory {
28 /** @var array */
29 private $parserConf;
30
31 /** @var MagicWordFactory */
32 private $magicWordFactory;
33
34 /** @var Language */
35 private $contLang;
36
37 /** @var string */
38 private $urlProtocols;
39
40 /** @var SpecialPageFactory */
41 private $specialPageFactory;
42
43 /** @var Config */
44 private $siteConfig;
45
46 /**
47 * @param array $parserConf See $wgParserConf documentation
48 * @param MagicWordFactory $magicWordFactory
49 * @param Language $contLang Content language
50 * @param string $urlProtocols As returned from wfUrlProtocols()
51 * @param SpecialPageFactory $spFactory
52 * @param Config $siteConfig
53 * @since 1.32
54 */
55 public function __construct(
56 array $parserConf, MagicWordFactory $magicWordFactory, Language $contLang, $urlProtocols,
57 SpecialPageFactory $spFactory, Config $siteConfig
58 ) {
59 $this->parserConf = $parserConf;
60 $this->magicWordFactory = $magicWordFactory;
61 $this->contLang = $contLang;
62 $this->urlProtocols = $urlProtocols;
63 $this->specialPageFactory = $spFactory;
64 $this->siteConfig = $siteConfig;
65 }
66
67 /**
68 * @return Parser
69 * @since 1.32
70 */
71 public function create() : Parser {
72 return new Parser( $this->parserConf, $this->magicWordFactory, $this->contLang, $this,
73 $this->urlProtocols, $this->specialPageFactory, $this->siteConfig );
74 }
75 }