Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 9 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 1 |
LocalJobSubmitJob | |
0.00% |
0 / 9 |
|
0.00% |
0 / 2 |
12 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
run | |
0.00% |
0 / 8 |
|
0.00% |
0 / 1 |
6 |
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 3 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 |
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
15 | */ |
16 | |
17 | namespace MediaWiki\GlobalUserPage; |
18 | |
19 | use Job; |
20 | use MediaWiki\MediaWikiServices; |
21 | use MediaWiki\Title\Title; |
22 | |
23 | /** |
24 | * Job class that submits LocalCacheUpdateJob jobs |
25 | */ |
26 | class LocalJobSubmitJob extends Job { |
27 | public function __construct( Title $title, array $params ) { |
28 | parent::__construct( 'GlobalUserPageLocalJobSubmitJob', $title, $params ); |
29 | } |
30 | |
31 | public function run() { |
32 | $job = new LocalCacheUpdateJob( |
33 | Title::newFromText( 'User:' . $this->params['username'] ), |
34 | $this->params |
35 | ); |
36 | $jobQueueGroupFactory = MediaWikiServices::getInstance()->getJobQueueGroupFactory(); |
37 | foreach ( GlobalUserPage::getEnabledWikis() as $wiki ) { |
38 | $jobQueueGroupFactory->makeJobQueueGroup( $wiki )->push( $job ); |
39 | } |
40 | return true; |
41 | } |
42 | } |