/usr/share/mediawiki-extensions/collection/Collection.templates.php is in mediawiki-extensions-collection 2.5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 | <?php
/**
* @defgroup Templates Templates
* @file
* @ingroup Templates
*/
if( !defined( 'MEDIAWIKI' ) ) die( -1 );
/**
* HTML template for Special:Book
* @ingroup Templates
*/
class CollectionPageTemplate extends QuickTemplate {
function execute() {
$mediapath = $GLOBALS['wgScriptPath'] . '/extensions/Collection/collection/';
?>
<div style="width: 47%; float: left; margin-right: 5%">
<?php $this->msgWiki('coll-intro_text') ?>
<h2><span class="mw-headline"><?php $this->msg('coll-your_book') ?></span></h2>
<form action="<?php echo htmlspecialchars(SkinTemplate::makeSpecialUrlSubpage('Book', 'set_titles/')) ?>" method="post" id="mw-collection-title-form">
<table id="mw-collection-title-table" style="width: 80%; background-color: transparent;" align="center">
<tbody>
<tr>
<td class="mw-label"><label for="titleInput"><?php $this->msg('coll-title') ?></label></td>
<td class="mw-input"><input id="titleInput" type="text" name="collectionTitle" value="<?php echo htmlspecialchars($this->data['collection']['title']) ?>" /></td>
</tr>
<tr>
<td class="mw-label"><label for="subtitleInput"><?php $this->msg('coll-subtitle') ?></label></td>
<td class="mw-input"><input id="subtitleInput" type="text" name="collectionSubtitle" value="<?php echo htmlspecialchars($this->data['collection']['subtitle']) ?>" /></td>
</tr>
</tbody>
</table>
<noscript>
<input type="submit" value="<?php $this->msg('coll-update') ?>" />
</noscript>
</form>
<div id="collectionListContainer">
<?php
$listTemplate = new CollectionListTemplate();
$listTemplate->set( 'collection', $this->data['collection'] );
$listTemplate->execute();
?>
</div>
<div style="display:none">
<span id="newChapterText"><?php $this->msg('coll-new_chapter') ?></span>
<span id="renameChapterText"><?php $this->msg('coll-rename_chapter') ?></span>
<span id="clearCollectionConfirmText"><?php $this->msg('coll-clear_collection_confirm') ?></span>
</div>
</div>
<div style="width: 47%; float: left">
<div style="margin-bottom: 10px; padding: 10px; border: 1px solid #aaa; background-color: #f9f9f9;">
<h2><span class="mw-headline"><?php $this->msg('coll-book_title') ?></span></h2>
<?php $this->msgWiki('coll-book_text') ?>
<div id="ppList">
<?php foreach ($this->data['podpartners'] as $partner => $partnerData) { ?>
<form action="<?php echo htmlspecialchars(SkinTemplate::makeSpecialUrlSubpage('Book', 'post_zip/')) ?>" method="get">
<input type="hidden" name="partner" value="<?php echo htmlspecialchars($partner) ?>"/>
<table style="width:100%; background-color: transparent;"><tr><td><a href="<?php echo htmlspecialchars($partnerData['url']) ?>" target="_blank"><?php echo wfMsgHtml('coll-about_pp', htmlspecialchars($partnerData['name'])) ?></a></td>
<td style="text-align:right"><input type="submit" value="<?php echo wfMsgHtml('coll-order_from_pp', htmlspecialchars($partnerData['name'])) ?>" class="order" <?php if (count($this->data['collection']['items']) == 0) { ?> disabled="disabled"<?php } ?> /></td></tr></table>
</form>
<?php } ?>
</div>
</div>
<div style="margin-bottom: 10px; padding: 10px; border: 1px solid #aaa; background-color: #f9f9f9;">
<h2><span class="mw-headline"><?php $this->msg('coll-download_title') ?></span></h2>
<?php if (count($this->data['formats']) == 1) {
$writer = array_rand($this->data['formats']);
echo $GLOBALS['wgParser']->parse(
wfMsgNoTrans('coll-download_as_text', $this->data['formats'][$writer]),
$GLOBALS['wgTitle'],
$GLOBALS['wgOut']->parserOptions(),
true
)->getText();
$buttonLabel = wfMsgHtml('coll-download_as', htmlspecialchars($this->data['formats'][$writer]));
} else {
$this->msgWiki('coll-download_text');
$buttonLabel = wfMsgHtml('coll-download');
} ?>
<form id="downloadForm" action="<?php echo htmlspecialchars(SkinTemplate::makeSpecialUrlSubpage('Book', 'render/')) ?>" method="post">
<table style="width:100%; background-color: transparent;"><tr><td><tbody><tr><td>
<?php if (count($this->data['formats']) == 1) { ?>
<input type="hidden" name="writer" value="<?php echo htmlspecialchars($writer) ?>" />
<?php } else { ?>
<label for="formatSelect"><?php $this->msg('coll-format_label') ?></label>
<select id="formatSelect" name="writer">
<?php foreach ($this->data['formats'] as $writer => $name) { ?>
<option value="<?php echo htmlspecialchars($writer) ?>"><?php echo htmlspecialchars($name) ?></option>
<?php } ?>
</select>
<?php } ?>
</td><td style="text-align:right; vertical-align:bottom;">
<input id="downloadButton" type="submit" value="<?php echo $buttonLabel ?>"<?php if (count($this->data['collection']['items']) == 0) { ?> disabled="disabled"<?php } ?> />
</td></tr></tbody></table>
</form>
</div>
<div style="margin-bottom: 10px; padding: 10px; border: 1px solid #aaa; background-color: #f9f9f9;">
<h2><span class="mw-headline"><?php $this->msg('coll-save_collection_title') ?></span></h2>
<?php if ($GLOBALS['wgUser']->isLoggedIn()) { ?>
<?php $this->msgWiki('coll-save_collection_text') ?>
<?php
$bookname = wfMsgForContent('coll-collections');
?>
<form id="saveForm" action="<?php echo htmlspecialchars(SkinTemplate::makeSpecialUrlSubpage('Book', 'save_collection/')) ?>" method="post">
<table style="width:100%; background-color: transparent;"><tr><td>
<?php
if (!$GLOBALS['wgUser']->isNewbie()) {
$communityCollNS = $GLOBALS['wgCommunityCollectionNamespace'];
?>
<input id="personalCollType" type="radio" name="colltype" value="personal" checked="checked" />
<?php } else { ?>
<input type="hidden" name="colltype" value="personal" />
<?php } ?>
<label for="personalCollTitle"><a href="<?php echo htmlspecialchars(SkinTemplate::makeSpecialUrl('Prefixindex', 'from=' . $GLOBALS['wgUser']->getName() . '/' . $bookname . '/&namespace=2')) ?>"><?php echo htmlspecialchars($GLOBALS['wgUser']->getUserPage()->getPrefixedText() . '/' . $bookname . '/') ?></a></label>
</td>
<td style="text-align:right;">
<input id="personalCollTitle" type="text" name="pcollname" />
</td></tr>
<?php
if (!$GLOBALS['wgUser']->isNewbie()) {
$communityCollNS = $GLOBALS['wgCommunityCollectionNamespace'];
?>
<tr><td>
<input id="communityCollType" type="radio" name="colltype" value="community" />
<label for="communityCollTitle"><a href="<?php echo htmlspecialchars(SkinTemplate::makeSpecialUrl('Prefixindex', 'from=' . $bookname . '/&namespace=' . $communityCollNS)) ?>"><?php echo htmlspecialchars(Title::makeTitle($communityCollNS, $bookname)->getPrefixedText() . '/') ?></a></label>
</td>
<td style="text-align:right;">
<input id="communityCollTitle" type="text" name="ccollname" disabled="disabled" />
</td></tr>
<?php } // autoconfirmed ?>
<tr><td> </td><td style="text-align:right;">
<input id="saveButton" type="submit" value="<?php $this->msg('coll-save_collection') ?>"<?php if (count($this->data['collection']['items']) == 0) { ?> disabled="disabled"<?php } ?> />
</tr>
</table>
</form>
<?php } else {
$this->msgWiki('coll-login_to_save');
}
$this->msgWiki('coll-save_category');
?>
</div>
</div>
<?php
}
}
/**
* HTML template for Special:Book collection item list
* @ingroup Templates
*/
class CollectionListTemplate extends QuickTemplate {
function execute() {
$mediapath = $GLOBALS['wgScriptPath'] . '/extensions/Collection/collection/';
?>
<div style="text-align: center; padding: 2px; margin-top: 20px; margin-bottom: 2px; border: 1px solid #aaa; background-color: #f9f9f9;">
<div>
<a class="makeVisible" style="margin-right: 3em;<?php if (!isset($this->data['is_ajax'])) { echo ' display:none;'; } ?>" onclick="return coll_create_chapter()" href="javascript:void(0);"><?php $this->msg('coll-create_chapter') ?></a>
<?php if (count($this->data['collection']['items']) > 0) { ?>
<a style="margin-right: 3em" href="<?php echo htmlspecialchars(SkinTemplate::makeSpecialUrlSubpage('Book', 'sort_items/')) ?>"><?php $this->msg('coll-sort_alphabetically') ?></a>
<a onclick="return coll_clear_collection()" href="<?php echo htmlspecialchars(SkinTemplate::makeSpecialUrlSubpage('Book', 'clear_collection/')) ?>"><?php $this->msg('coll-clear_collection') ?></a>
<?php } ?>
</div>
</div>
<div style="padding: 10px 20px; border: 1px solid rgb(170, 170, 170)">
<?php
if (count($this->data['collection']['items']) == 0) { ?>
<em id="emptyCollection"><?php $this->msg('coll-empty_collection'); ?></em>
<?php } else { ?>
<div style="text-align: center; margin-bottom: 10px">
<em class="makeVisible" style="display:none; font-size: 95%"><?php $this->msg('coll-drag_and_drop') ?></em>
</div>
<?php }?>
<ul id="collectionList" style="list-style: none; margin-left: 0;">
<?php
foreach($this->data['collection']['items'] as $index => $item) {
if ($item['type'] == 'article') { ?>
<li id="item-<?php echo $index ?>" class="article">
<a onclick="return coll_remove_item(<?php echo $index ?>)" href="<?php echo htmlspecialchars(SkinTemplate::makeSpecialUrlSubpage('Book', 'remove_item/', 'index=' . $index)) ?>" title="<?php $this->msg('coll-remove') ?>"><img src="<?php echo htmlspecialchars($mediapath . "remove.png") ?>" width="10" height="10" alt="<?php $this->msg('remove') ?>" /></a><a>
<noscript>
<?php if ($index == 0) { ?>
<img src="<?php echo htmlspecialchars($mediapath . "trans.png") ?>" width="10" height="10" alt="" />
<?php } else { ?>
<a onclick="return coll_move_item(<?php echo $index . ', -1' ?>)" href="<?php echo htmlspecialchars(SkinTemplate::makeSpecialUrlSubpage('Book', 'move_item/', 'delta=-1&index=' . $index)) ?>" title="<?php $this->msg('coll-move_up') ?>"><img src="<?php echo htmlspecialchars($mediapath . "up.png") ?>" width="10" height="10" alt="<?php $this->msg('coll-move_up') ?>" /></a>
<?php }
if ($index == count($this->data['collection']['items']) - 1) { ?>
<img src="<?php echo htmlspecialchars($mediapath . "trans.png") ?>" width="10" height="10" alt="" />
<?php } else { ?>
<a onclick="return coll_move_item(<?php echo $index . ', 1' ?>)" href="<?php echo htmlspecialchars(SkinTemplate::makeSpecialUrlSubpage('Book', 'move_item/', 'delta=1&index=' . $index)) ?>" title="<?php $this->msg('coll-move_down') ?>"><img src="<?php echo htmlspecialchars($mediapath . "down.png") ?>" width="10" height="10" alt="<?php $this->msg('coll-move_down') ?>" /></a>
<?php } ?>
</noscript>
<?php if ($item['currentVersion'] == 0) {
$url = $item['url'] . '?oldid=' . $item['revision'];
} else {
$url = $item['url'];
}
?>
<a href="<?php echo $url ?>" title="<?php $this->msg('coll-show') ?>"><img src="<?php echo htmlspecialchars($mediapath . "show.png") ?>" width="10" height="10" alt="<?php $this->msg('coll-show') ?>" /></a>
<span class="title sortableitem" style="margin-left: 1em;">
<?php if (isset($item['displaytitle']) && $item['displaytitle'] != '') {
echo htmlspecialchars($item['displaytitle']);
} else {
echo htmlspecialchars($item['title']);
} ?>
</span>
</li>
<?php } else if ($item['type'] == 'chapter') { ?>
<li id="item-<?php echo $index ?>" class="chapter" style="margin-top:0.3em;">
<a onclick="return coll_remove_item(<?php echo $index ?>)" href="<?php echo htmlspecialchars(SkinTemplate::makeSpecialUrlSubpage('Book', 'remove_item/', 'index=' . $index)) ?>" title="<?php $this->msg('coll-remove') ?>"><img src="<?php echo htmlspecialchars($mediapath . "remove.png") ?>" width="10" height="10" alt="<?php $this->msg('coll-remove') ?>" /></a>
<noscript>
<?php if ($index == 0) { ?>
<img src="<?php echo htmlspecialchars($mediapath . "trans.png") ?>" width="10" height="10" alt="" />
<?php } else { ?>
<a onclick="return coll_move_item(<?php echo $index . ', -1' ?>)" href="<?php echo htmlspecialchars(SkinTemplate::makeSpecialUrlSubpage('Book', 'move_item/', 'delta=-1&index=' . $index)) ?>" title="<?php $this->msg('coll-move_up') ?>"><img src="<?php echo htmlspecialchars($mediapath . "up.png") ?>" width="10" height="10" alt="<?php $this->msg('coll-move_up') ?>" /></a>
<?php }
if ($index == count($this->data['collection']['items']) - 1) { ?>
<img src="<?php echo htmlspecialchars($mediapath . "trans.png") ?>" width="10" height="10" alt="" />
<?php } else { ?>
<a onclick="return coll_move_item(<?php echo $index . ', 1' ?>)" href="<?php echo htmlspecialchars(SkinTemplate::makeSpecialUrlSubpage('Book', 'move_item/', 'delta=1&index=' . $index)) ?>" title="<?php $this->msg('coll-move_down') ?>"><img src="<?php echo htmlspecialchars($mediapath . "down.png") ?>" width="10" height="10" alt="<?php $this->msg('coll-move_down') ?>" /></a>
<?php } ?>
</noscript>
<img src="<?php echo htmlspecialchars($mediapath . "trans.png") ?>" width="10" height="10" alt="" />
<strong class="title sortableitem" style="margin-left: 0.2em;"><?php echo htmlspecialchars($item['title']) ?></strong>
<a class="makeVisible" <?php if (!isset($this->data['is_ajax'])) { echo 'style="display:none"'; } ?> onclick="return coll_rename_chapter(<?php echo $index . ', \'' . $item['title'] . '\''; ?>)" href="javascript:void(0)">[<?php $this->msg('coll-rename') ?>]</a>
</li>
<?php }
} ?>
</ul>
</div>
<?php
}
}
/**
* HTML template for Special:Book/load_collection/ when overwriting an exisiting collection
* @ingroup Templates
*/
class CollectionLoadOverwriteTemplate extends QuickTemplate {
function execute() {
?>
<?php $this->msgWiki('coll-load_overwrite_text'); ?>
<form action="<?php echo htmlspecialchars(SkinTemplate::makeSpecialUrlSubpage('Book', 'load_collection/')) ?>" method="post">
<input name="overwrite" type="submit" value="<?php $this->msg('coll-overwrite') ?>" />
<input name="append" type="submit" value="<?php $this->msg('coll-append') ?>" />
<input name="cancel" type="submit" value="<?php $this->msg('coll-cancel') ?>" />
<input name="colltitle" type="hidden" value="<?php echo htmlspecialchars($this->data['title']->getPrefixedText()) ?>" />
</form>
<?php
}
}
/**
* HTML template for Special:Book/save_collection/ when overwriting an exisiting collection
* @ingroup Templates
*/
class CollectionSaveOverwriteTemplate extends QuickTemplate {
function execute() {
?>
<h2><span class="mw-headline"><?php $this->msg('coll-overwrite_title') ?></span></h2>
<p><?php echo $GLOBALS['wgParser']->parse(wfMsgNoTrans('coll-overwrite_text', $this->data['title']->getPrefixedText()), $GLOBALS['wgTitle'], $GLOBALS['wgOut']->parserOptions(), true)->getText() ?></p>
<form action="<?php echo htmlspecialchars(SkinTemplate::makeSpecialUrlSubpage('Book', 'save_collection/')) ?>" method="post">
<input name="overwrite" type="submit" value="<?php $this->msg('coll-yes') ?>" />
<input name="abort" type="submit" value="<?php $this->msg('coll-no') ?>" />
<input name="colltitle" type="hidden" value="<?php echo htmlspecialchars($this->data['title']->getPrefixedText()) ?>" />
</form>
<?php
}
}
/**
* HTML template for Special:Book/rendering/ (in progress)
* @ingroup Templates
*/
class CollectionRenderingTemplate extends QuickTemplate {
function execute() {
?>
<span style="display:none" id="renderingStatusText"><?php echo wfMsg('coll-rendering_status', '%PARAM%') ?></span>
<span style="display:none" id="renderingArticle"><?php echo ' ' . wfMsg('coll-rendering_article', '%PARAM%') ?></span>
<span style="display:none" id="renderingPage"><?php echo ' ' . wfMsg('coll-rendering_page', '%PARAM%') ?></span>
<?php echo wfMsg('coll-rendering_text', $GLOBALS['wgLang']->formatNum($this->data['progress']), $this->data['status']) ?>
<?php
}
}
/**
* HTML template for Special:Book/rendering/ (finished)
* @ingroup Templates
*/
class CollectionFinishedTemplate extends QuickTemplate {
function execute() {
echo $GLOBALS['wgParser']->parse(
wfMsgNoTrans('coll-rendering_finished_text', $this->data['download_url']),
$GLOBALS['wgTitle'],
$GLOBALS['wgOut']->parserOptions(),
true
)->getText();
if ($this->data['is_cached']) {
$forceRenderURL = SkinTemplate::makeSpecialUrlSubpage('Book', 'forcerender/', $this->data['query']);
echo wfMsg('coll-is_cached', htmlspecialchars($forceRenderURL));
}
echo $GLOBALS['wgParser']->parse(
wfMsgNoTrans('coll-excluded-templates', wfMsgForContent('coll-exclusion_category_title')),
$GLOBALS['wgTitle'],
$GLOBALS['wgOut']->parserOptions(),
true
)->getText();
$title_string = wfMsgForContent('coll-template_blacklist_title');
$t = Title::newFromText($title_string);
$a = new Article($t);
if ( $a->exists() ) {
echo $GLOBALS['wgParser']->parse(
wfMsgNoTrans('coll-blacklisted-templates', $title_string),
$GLOBALS['wgTitle'],
$GLOBALS['wgOut']->parserOptions(),
true
)->getText();
}
if ($this->data['return_to']) {
// We are doing this the hard way (i.e. via the HTML detour), to prevent
// the parser from replacing [[:Special:Book]] with a selflink.
$t = Title::newFromText($this->data['return_to']);
echo wfMsg(
'coll-return_to_collection',
htmlspecialchars($t->getFullURL()),
htmlspecialchars($this->data['return_to'])
);
}
?>
<?php
}
}
?>
|