* Fixed unclosed <p> tag
[lhc/web/wiklou.git] / includes / SpecialAllmessages.php
1 <?php
2 /**
3 * Provide functions to generate a special page
4 * @package MediaWiki
5 * @subpackage SpecialPage
6 */
7
8 /**
9 *
10 */
11 function wfSpecialAllmessages() {
12 global $wgOut, $wgAllMessagesEn, $wgRequest, $wgMessageCache, $wgTitle;
13 global $wgLanguageCode, $wgContLanguageCode, $wgContLang;
14 global $wgUseDatabaseMessages;
15
16 if(!$wgUseDatabaseMessages) {
17 $wgOut->addHTML(wfMsg('allmessagesnotsupportedDB'));
18 return;
19 }
20
21 $fname = "wfSpecialAllMessages";
22 wfProfileIn( $fname );
23
24 wfProfileIn( "$fname-setup");
25 $ot = $wgRequest->getText( 'ot' );
26
27 $navText = wfMsg( 'allmessagestext' );
28
29
30 $first = true;
31 $sortedArray = $wgAllMessagesEn;
32 ksort( $sortedArray );
33 $messages = array();
34 $wgMessageCache->disableTransform();
35
36 foreach ( $sortedArray as $key => $enMsg ) {
37 $messages[$key]['enmsg'] = $enMsg;
38 $messages[$key]['statmsg'] = wfMsgNoDb( $key );
39 $messages[$key]['msg'] = wfMsg ( $key );
40 }
41
42 $wgMessageCache->enableTransform();
43 wfProfileOut( "$fname-setup" );
44
45 wfProfileIn( "$fname-output" );
46 if ($ot == 'php') {
47 $navText .= makePhp($messages);
48 $wgOut->addHTML('PHP | <a href="'.$wgTitle->escapeLocalUrl('ot=html').'">HTML</a><pre>'.htmlspecialchars($navText).'</pre>');
49 } else {
50 $wgOut->addHTML( '<a href="'.$wgTitle->escapeLocalUrl('ot=php').'">PHP</a> | HTML' );
51 $wgOut->addWikiText( $navText );
52 $wgOut->addHTML( makeHTMLText( $messages ) );
53 }
54 wfProfileOut( "$fname-output" );
55
56 wfProfileOut( $fname );
57 }
58
59 /**
60 *
61 */
62 function makePhp($messages) {
63 global $wgLanguageCode;
64 $txt = "\n\n".'$wgAllMessages'.ucfirst($wgLanguageCode).' = array('."\n";
65 foreach( $messages as $key => $m ) {
66 if(strtolower($wgLanguageCode) != 'en' and $m['msg'] == $m['enmsg'] ) {
67 if (strstr($m['msg'],"\n")) {
68 $txt.='/* ';
69 $comment=' */';
70 } else {
71 $txt .= '#';
72 $comment = '';
73 }
74 } elseif ($m['msg'] == '&lt;'.$key.'&gt;'){
75 $m['msg'] = '';
76 $comment = ' #empty';
77 } else {
78 $comment = '';
79 }
80 $txt .= "'$key' => '" . preg_replace( "/(?<!\\\\)'/", "\'", $m['msg']) . "',$comment\n";
81 }
82 $txt .= ');';
83 return $txt;
84 }
85
86 /**
87 *
88 */
89 function makeHTMLText( $messages ) {
90 global $wgLang, $wgUser, $wgLanguageCode, $wgContLanguageCode, $wgContLang;
91 $fname = "makeHTMLText";
92 wfProfileIn( $fname );
93
94 $sk =& $wgUser->getSkin();
95 $talk = $wgLang->getNsText( NS_TALK );
96 $mwnspace = $wgLang->getNsText( NS_MEDIAWIKI );
97 $mwtalk = $wgLang->getNsText( NS_MEDIAWIKI_TALK );
98 $txt = "
99
100 <table border='1' cellspacing='0' width='100%'>
101 <tr bgcolor='#b2b2ff'>
102 <th>" . wfMsg('allmessagesname') . "</th>
103 <th>" . wfMsg('allmessagesdefault') . "</th>
104 <th>" . wfMsg('allmessagescurrent') . "</th>
105 </tr>";
106
107 wfProfileIn( "$fname-check" );
108 # This is a nasty hack to avoid doing independent existence checks
109 # without sending the links and table through the slow wiki parser.
110 $pageExists = array(
111 NS_MEDIAWIKI => array(),
112 NS_MEDIAWIKI_TALK => array()
113 );
114 $dbr =& wfGetDB( DB_SLAVE );
115 $page = $dbr->tableName( 'page' );
116 $sql = "SELECT page_namespace,page_title FROM $page WHERE page_namespace IN (" . NS_MEDIAWIKI . ", " . NS_MEDIAWIKI_TALK . ")";
117 $res = $dbr->query( $sql );
118 while( $s = $dbr->fetchObject( $res ) ) {
119 $pageExists[$s->page_namespace][$s->page_title] = true;
120 }
121 $dbr->freeResult( $res );
122 wfProfileOut( "$fname-check" );
123
124 wfProfileIn( "$fname-output" );
125
126 foreach( $messages as $key => $m ) {
127
128 $title = $wgLang->ucfirst( $key );
129 if($wgLanguageCode != $wgContLanguageCode)
130 $title.="/$wgLanguageCode";
131
132 $titleObj =& Title::makeTitle( NS_MEDIAWIKI, $title );
133 $talkPage =& Title::makeTitle( NS_MEDIAWIKI_TALK, $title );
134
135 $colorIt = ($m['statmsg'] == $m['msg']) ? " bgcolor=\"#f0f0ff\"" : " bgcolor=\"#ffe2e2\"";
136 $message = htmlspecialchars( $m['statmsg'] );
137 $mw = htmlspecialchars( $m['msg'] );
138
139 #$pageLink = $sk->makeLinkObj( $titleObj, htmlspecialchars( $key ) );
140 #$talkLink = $sk->makeLinkObj( $talkPage, htmlspecialchars( $talk ) );
141 if( isset( $pageExists[NS_MEDIAWIKI][$title] ) ) {
142 $pageLink = $sk->makeKnownLinkObj( $titleObj, htmlspecialchars( $key ) );
143 } else {
144 $pageLink = $sk->makeBrokenLinkObj( $titleObj, htmlspecialchars( $key ) );
145 }
146 if( isset( $pageExists[NS_MEDIAWIKI_TALK][$title] ) ) {
147 $talkLink = $sk->makeKnownLinkObj( $talkPage, htmlspecialchars( $talk ) );
148 } else {
149 $talkLink = $sk->makeBrokenLinkObj( $talkPage, htmlspecialchars( $talk ) );
150 }
151
152 $txt .=
153 "<tr$colorIt><td>
154 $pageLink<br />
155 $talkLink
156 </td><td>
157 $message
158 </td><td>
159 $mw
160 </td></tr>";
161 }
162 $txt .= "</table>";
163 wfProfileOut( "$fname-output" );
164
165 wfProfileOut( $fname );
166 return $txt;
167 }
168
169 ?>