-
Notifications
You must be signed in to change notification settings - Fork 4
/
pChart4mw.org.php
executable file
·156 lines (133 loc) · 7.17 KB
/
pChart4mw.org.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<?php
/**
* pChart4mw.php
* provide tags for drawing charts easily using pChart.
* written by Robert Horlings
* http://www.mediawiki.org/wiki/Extension:pChart4mw
*
* To configure the functionality of this extension include the following in your
* LocalSettings.php file:
*
* $wgPChart4mwDefaults = Array ( "size" => "200x120" );
* $wgPChart4mwLinesDefaults = Array ( "grid" => "xy", "ymin" => "0", "ylabel" => "4");
* $wgPChart4mwBarsDefaults = Array ( "grid" => "y", "ymin" => "0", "ylabel" => "4" );
* $wgPChart4mwPieDefaults = Array ( "3d" => "3d" );
* require_once( "$IP/extensions/pChart4mw/pChart4mw.php" );
*/
// Include library functions
require_once( "library.inc.php" );
// Check whether this extension runs standalone or within MEDIAWIKI
if(! defined( "MEDIAWIKI" ) ) {
echo( "This is an extension to the MediaWiki package and cannot be run standalone.\n" );
die( -1 );
}
// Register this extension on the Special:Version page for showing credits
$wgExtensionCredits["parserhook"][] = array(
"name" => "pChart4mw",
"version" => "1.3.2",
"author" => "Robert Horlings, Gérard de Smaele",
"url" => "http://www.mediawiki.org/wiki/Extension:Pchart4mw",
"description" => "Provides tags for creating different types of pChart graphs: bar, line, pie, radar, scatter and bubble charts."
);
//
// Default parameters
//
// Image format to save the charts. Can be 'png', 'jpeg' or 'gif'
$wgPChart4mwImageFormat = "png";
// Flag whether the built-in cache should be used. Using the cache the
// system will only create each chart once and save it to disk. If no
// changes are detected, the image that is already created will be used
$wgPChart4mwCacheEnabled= true;
// Directory within the $wgUploadPath directory ([wiki]/images) to save
// generated charts to. This directory must exist and be writable. If it
// does not, the system will attempt to create it.
//
// Even when cache is disabled, the directory must still exist. Images are saved
// to that directory to show them in wiki pages
$wgPChart4mwCacheDir = "pChart4mw";
// Set this value to some location if you want the charts to be generated on
// another server. In that case, the pChart4mw should be installed on that
// server. If this parameter is left empty, the images are created on the local machine
//
// When using the webservice, most parameters set in this file do not have any effect.
// The parameters should be set in the webservice file itself.
//
// The webservice should accept a parameter called _data. This parameter contains all
// data to generate the chart. Newlines are converted to literal '|', in order to get
// all data on one line. Another parameter is _type. It contains the type of chart
// to be generated. All other arguments are given by [key]=[value] pairs
// The webservice is called using a GET request
//
// Example: $wgPChart4mwWebservice = "http://localhost/external/pChartWebservice.php";
// $wgPChart4mwWebservice = "http://localhost:8000/wiki/extensions/pChart4mw/pChartWebservice.php";
$wgPChart4mwWebservice = "";
// Absolute path where PChart is installed (only the dirname). Use $_SERVER[ "DOCUMENT_ROOT" ]
// to retrieve the absolute path to the document root and dirname ( __FILE__ ) for the
// absolute path to the directory where this extension file is.
// $wgPChart4mwPChartPath = $_SERVER[ "DOCUMENT_ROOT" ] . "/pchart/pChart";
$wgPChart4mwPChartPath = dirname( __FILE__) . "/pChart";
// Absolute path to the fonts that can be used for writing text into the charts.
// This variable contains the path that directs to the TTF-fontfiles
$wgPChart4mwFontPath = dirname( __FILE__) . "/fonts";
// Directory containing the color schemes. These color schemes are text files with
// a color on each line. Every color is a comma-separated RGB color. An example is
$wgPChart4mwDefaultColorSchemeDir = dirname( __FILE__ ) . "/colorschemes";
// Register the wfPChart4mwSetup function as setup function
// Avoid unstubbing $wgParser too early on modern (1.12+) MW versions, as per r35980
if ( defined( 'MW_SUPPORTS_PARSERFIRSTCALLINIT' ) ) {
$wgHooks['ParserFirstCallInit'][] = 'wfPChart4mwSetup';
} else {
$wgExtensionFunctions[] = 'wfPChart4mwSetup';
}
// Add a hook to initialise the magic word
$wgHooks['LanguageGetMagic'][] = 'wfPChart4mwMagic';
// Make sure classes for pChart4mw and pChart itself can be loaded.
$currentDir = dirname(__FILE__);
$wgAutoloadClasses[ 'pChart' ] = $wgPChart4mwPChartPath . '/pChart.class';
$wgAutoloadClasses[ 'pChart4mw' ] = $currentDir . '/pChart4mw.class.php';
$wgAutoloadClasses[ 'pChart4mwBars' ] = $currentDir . '/pChart4mw.bars.class.php';
$wgAutoloadClasses[ 'pChart4mwLines' ] = $currentDir . '/pChart4mw.lines.class.php';
$wgAutoloadClasses[ 'pChart4mwRadar' ] = $currentDir . '/pChart4mw.radar.class.php';
$wgAutoloadClasses[ 'pChart4mwPie' ] = $currentDir . '/pChart4mw.pie.class.php';
$wgAutoloadClasses[ 'pChart4mwScatter' ] = $currentDir . '/pChart4mw.scatter.class.php';
$wgAutoloadClasses[ 'pChart4mwBubble' ] = $currentDir . '/pChart4mw.bubble.class.php';
// Registers some functions to be run when pBars tag is found
function wfPChart4mwSetup() {
global $wgParser, $wgPChart4mwWebservice;
// Register the function hooks
$wgParser->setHook( 'pBars', array( 'pChart4mwBars', 'render' ) );
$wgParser->setHook( 'pLines', array( 'pChart4mwLines', 'render' ) );
$wgParser->setHook( 'pRadar', array( 'pChart4mwRadar', 'render' ) );
$wgParser->setHook( 'pPie', array( 'pChart4mwPie', 'render' ) );
$wgParser->setHook( 'pScatter', array( 'pChart4mwScatter', 'render' ) );
$wgParser->setHook( 'pBubble', array( 'pChart4mwBubble', 'render' ) );
// Register the parser functions
$wgParser->setFunctionHook( 'pBars', array( 'pChart4mwBars', 'renderParserFunction' ) );
$wgParser->setFunctionHook( 'pLines', array( 'pChart4mwLines', 'renderParserFunction' ) );
$wgParser->setFunctionHook( 'pRadar', array( 'pChart4mwRadar', 'renderParserFunction' ) );
$wgParser->setFunctionHook( 'pPie', array( 'pChart4mwPie', 'renderParserFunction' ) );
$wgParser->setFunctionHook( 'pScatter', array( 'pChart4mwScatter', 'renderParserFunction' ) );
$wgParser->setFunctionHook( 'pBubble', array( 'pChart4mwBubble', 'renderParserFunction' ) );
return true;
}
/**
* Sets magic words in order to use parser functions
*
* @see http://www.mediawiki.org/wiki/Manual:Parser_functions
* @param <type> $magicWords
* @param <type> $langCode
* @return <type>
*/
function wfPChart4mwMagic( &$magicWords, $langCode ) {
// Add the magic word
// The first array element is whether to be case sensitive, in this case (0) it is not case sensitive, 1 would be sensitive
// All remaining elements are synonyms for our parser function
$magicWords['pBars'] = array( 0, 'pBars' );
$magicWords['pLines'] = array( 0, 'pLines' );
$magicWords['pBubble'] = array( 0, 'pBubble' );
$magicWords['pPie'] = array( 0, 'pPie' );
$magicWords['pScatter'] = array( 0, 'pScatter' );
$magicWords['pRadar'] = array( 0, 'pRadar' );
// unless we return true, other parser functions extensions won't get loaded.
return true;
}