-
Notifications
You must be signed in to change notification settings - Fork 0
/
ReplicatePage_body.php
executable file
·79 lines (48 loc) · 1.53 KB
/
ReplicatePage_body.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
if (!defined('MEDIAWIKI')) { die(-1); }
class ReplicatePage {
public static function renderLink ( $parser, $frame, $args ) {
if ( isset($args[0]) ) {
global $wgOut;
$wgOut->addModules( 'ext.ReplicatePage' );
$reload = 0;
$endtext = $frame->expand( $args[0] );
# Origin is set
if ( isset($args[1]) ) {
$origintext = $frame->expand( $args[1] );
if ($origintext == '') {
$origintext=$parser->getTitle()->getText();
}
}
if ( isset($args[2]) ) {
if ( strpos( $args[2], "reload" ) > -1 ) {
$reload = "true";
} else {
$reload = "false";
}
}
# Origin is current
else {
$origintext=$parser->getTitle()->getText();
}
$str = Html::rawElement( 'a', array( 'href' => "#", 'class' => "replicate-link", 'data-replicate-target' => $endtext, 'data-replicate-source' => $origintext, 'data-replicate-reload' => $reload ), "Replicate" );
return $parser->insertStripItem( $str, $parser->mStripState );
}
else { return ""; }
}
public static function executeReplicate ( $origintext, $endtext ) {
# 2 params ( End and Origin )
if ( isset( $origintext ) && isset( $endtext ) ) {
$origin = Title::newFromText( $origintext );
$end = Title::newFromText( $endtext );
$wikipage = WikiPage::factory( $origin );
$content = $wikipage->getText();
$wikipageend = WikiPage::factory( $end );
$wikipageend->doEdit( $content, "Replicating");
return "OK";
}
else {
return "KO";
}
}
}