This repository has been archived by the owner on May 3, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
ScratchWikiSkin.php
278 lines (243 loc) · 9.59 KB
/
ScratchWikiSkin.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
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
<?php
/**
* Scratch skin
*
* @file
* @ingroup Skins
*/
if( !defined( 'MEDIAWIKI' ) ) {
die( 1 );
}
#require_once( dirname( dirname( __FILE__ ) ) . '/includes/SkinTemplate.php');
class SkinScratchWikiSkin extends SkinTemplate{
var $useHeadElement = true;
var $skinname = 'scratchwikiskin', $stylename = 'scratchwikiskin',
$template = 'ScratchWikiSkinTemplate';
function initPage(OutputPage $out) {
parent::initPage( $out );
}
function setupSkinUserCss(OutputPage $out) {
global $wgLocalStylePath;
parent::setupSkinUserCss($out);
$out->addStyle('scratchwikiskin/main.css', 'screen');
$out->addHeadItem('skinscript', "<script type='text/javascript' src='$wgLocalStylePath/scratchwikiskin/skin.js'></script>");
}
}
class ScratchWikiSkinTemplate extends BaseTemplate{
public function execute() {
global $wgRequest, $wgStylePath, $wgUser;
$skin = $this->data['skin'];
wfSuppressWarnings();
$this->html('headelement');
?>
<header>
<div class="container">
<a class= "scratch" href = "http://scratch.mit.edu"></a>
<ul class="left">
<li><a href="http://scratch.mit.edu/projects/editor/">Create</a></li>
<li><a href="http://scratch.mit.edu/explore/projects/all">Explore</a></li>
<li><a href="http://scratch.mit.edu/discuss/">Discuss</a></li>
<li ><a href="http://scratch.mit.edu/about/">About</a></li>
<li class = "last"><a href="http://scratch.mit.edu/help/">Help</a></li>
<!-- search -->
<li>
<form action="<?php $this->text( 'wgScript' ) ?>" class="search">
<!--<span class="glass"><i></i></span>-->
<input type= "submit" class= "glass" value= "">
<input type="search" id="searchInput" accesskey="f" title="Search Scratch Wiki [alt-shift-f]" name="search" autocomplete="off" placeholder="Search the Wiki" />
<!--<input type="submit" class="searchButton" id="searchGoButton" title="Go to a page with this exact name if exists" value="Go" name="go">-->
<input type="hidden" class="searchButton" id="mw-searchButton" title="Search the pages for this text" value="Search" />
<input type="hidden" value="Special:Search" name="title" />
</form>
</li>
</ul>
<ul class="user right">
<!-- user links -->
<?php if (!$wgUser->isLoggedIn()) { ?>
<!--<li class = last><a href=" Special:Userlogin">Log in to the Wiki</a></li>-->
<li class = last><a href="<?php if (isset($this->data['personal_urls']['anonlogin'])){echo htmlspecialchars($this->data['personal_urls']['anonlogin']['href']);}else{echo $this->data['personal_urls']['login']['href'];}?>">Log in to the Wiki</a></li>
<?php } else { ?>
<li id="userfcttoggle" class="last"><a><?=htmlspecialchars($wgUser->mName)?><span class = caret></span></a></li>
<ul id=userfctdropdown class="dropdownmenu"><?php foreach ($this->data['personal_urls'] as $key => $tab):?>
<li<?php if ($tab['class']):?> class="<?=htmlspecialchars($tab['class'])?>"<?php endif?>><a href="<?=htmlspecialchars($tab['href'])?>"><?=htmlspecialchars($tab['text'])?></a><?php endforeach?>
</ul>
<?php } ?>
</ul>
</div>
</header>
<div class="container main">
<div class=main-inner>
<div class=left>
<div class = "wikilogo_space"><a class = "wikilogo" href = "<?php echo htmlspecialchars( $this->data['nav_urls']['mainpage']['href'] ); ?>" title = "Scratch Wiki Main Page"></a></div>
<?php foreach ($this->getSidebar() as $box): if ($box['header']!='Toolbox'||$wgUser->isLoggedIn()){?>
<div class=box>
<!-- <?=print_r($box);?> -->
<h1><?=htmlspecialchars($box['header'])?></h1>
<?php if (is_array($box['content'])):?>
<ul class=box-content>
<?php foreach ($box['content'] as $name => $item):?>
<?=$this->makeListItem($name, $item)?>
<?php endforeach;
?>
</ul>
<?php
else:?>
<?=$box['content']?>
<?php endif?>
</div>
<?php } endforeach?>
<?php $this->renderContenttypeBox();
if (!$wgUser->isLoggedIn()) { ?>
<div class=box>
<h1>Help the wiki!</h1>
<div class=box-content>
The Scratch Wiki is made by and for Scratchers. Do you want to contribute?<br><br>
<a href="/wiki/Contribute_to_the_Scratch_Wiki">Learn more about joining as an editor!</a><br><br>
<a href = "/wiki/Scratch_Wiki_talk:Community_Portal">See discussions in the Community Portal</a>
</div>
</div>
<?php } ?>
</div>
<div class=right>
<?php if( $this->data['newtalk'] ) { ?><div class="box"><h1><?php $this->html('newtalk') ?></h1></div><?php } ?>
<?php if( $this->data['catlinks'] && $wgUser->isLoggedIn()) {
$cat = $this->data['catlinks'];
if(strpos($cat, 'How To Pages')> 0) {
$o = '<div class="box ctype ctype-helppage">'.
'<h1>How To page</h1>'.
'<div class=box-content>'.
'This page provides step-by-step help on how to do something for new users. Before editing, please read the <a href = /wiki/Help:How_To_pages>How To page guidelines.</a></div>'.
'</div>';
echo $o;
}
} ?>
<article class=box>
<h1><?php $this->html('title')?>
<div id=pagefctbtn></div>
<ul id=pagefctdropdown class="dropdownmenu box">
<? foreach ($this->data['content_actions'] as $key => $tab):?>
<?=$this->makeListItem($key, $tab)?>
<? endforeach?>
</ul>
</h1>
<div class=box-content>
<?php if ($this->data['subtitle']):?><p><?php $this->html('subtitle')?></p><?php endif?>
<?php if ($this->data['undelete']):?><p><?php $this->html('undelete')?></p><?php endif?>
<?php $this->html('bodytext')?>
<?php if ( $this->data['catlinks'] ): ?>
<!-- catlinks -->
<?php $this->html( 'catlinks' ); ?>
<!-- /catlinks -->
<?php endif; ?>
</div>
</article>
<?php
// generate additional footer links
$footerlinks = array(
'lastmod',
// 'viewcount',
);
?>
<ul id="f-list">
<?php
foreach ( $footerlinks as $aLink ) {
if ( isset( $this->data[$aLink] ) && $this->data[$aLink] ) {
?> <li id="<?php echo $aLink ?>"><?php $this->html( $aLink ) ?></li>
<?php }
}
?>
</ul>
</div>
</div>
</div>
<footer>
<div class="container">
<style>
footer ul.footer-col li {
list-style-type:none;
display: inline-block;
width: 184px;
text-align: left;
vertical-align: top;
}
footer ul.footer-col li h4 {
font-weight: bold;
font-size: 14px;
color: #666;
}
</style>
<ul class="clearfix footer-col">
<li>
<h4>About</h4>
<ul>
<li><a href ="http://scratch.mit.edu/about/">About Scratch</a></li>
<li><a href = "http://scratch.mit.edu/parents/">For Parents</a></li>
<li><a href = "http://scratch.mit.edu/educators/">For Educators</a></li>
<li><a href = "https://scratch.mit.edu/info/credits/">Credits</a></li>
<li><a href ="http://scratch.mit.edu/jobs/">Jobs</a></li>
<li><a href = "http://scratch.mit.edu/press/">Press</a></li>
</ul>
</li>
<li>
<h4>Community</h4>
<ul>
<li><a href = "http://scratch.mit.edu/community_guidelines/">Community Guidelines</a></li>
<li><a href = "http://scratch.mit.edu/discuss/">Discussion Forums</a></li>
<li><a href = "http://wiki.scratch.mit.edu/">Scratch Wiki</a></li>
<li><a href = "http://scratch.mit.edu/statistics/">Statistics</a></li>
</ul>
</li>
<li>
<h4>Support</h4>
<ul>
<li><a href = "http://scratch.mit.edu/help/">Help Page</a></li>
<li><a href = "http://scratch.mit.edu/help/faq/">FAQ</a></li>
<li><a href = "http://scratch.mit.edu/scratch2download/">Offline Editor</a></li>
<li><a href = "http://scratch.mit.edu/contact-us/">Contact Us</a></li>
<li><a href ="https://secure.donationpay.org/scratchfoundation/">Donate</a></li>
</ul>
</li>
<li>
<h4>Legal</h4>
<ul>
<li><a href="http://scratch.mit.edu/terms_of_use/">Terms of Use</a></li>
<li><a href="http://scratch.mit.edu/privacy_policy/">Privacy Policy</a></li>
<li><a href = "http://scratch.mit.edu/DMCA/">DMCA</a></li>
</ul>
</li>
<li>
<h4>Scratch Family</h4>
<ul>
<li><a href="http://scratched.gse.harvard.edu/">ScratchEd</a>
<li><a href="http://scratchjr.org">ScratchJr</a>
<li><a href="http://day.scratch.mit.edu">Scratch Day</a>
<li><a href="http://scratch.mit.edu/conference/">Scratch Conference</a>
<li><a href="http://codetolearn.org">Scratch Foundation</a>
</li>
</ul>
</li>
</ul>
<br>
<p >Scratch is a project of the Lifelong Kindergarten Group at the MIT Media Lab</p>
</footer>
<?php $this->printTrail(); ?>
<?php
}
protected function renderContenttypeBox() {
global $wgStylePath, $wgUser;
//content type identification box. to be moved somewhere else (cleaner).
# if( $this->data['catlinks'] && $wgUser->isLoggedIn()) {
# $cat = $this->data['catlinks'];
# if(strpos($cat, 'How To Pages')> 0) {
# $o = '<div class="box ctype ctype-helppage">'.
# '<h1>How To page</h1>'.
# '<div class=box-content>'.
# 'This page provides step-by-step help on how to do something for new users. Before editing, please read the How To page <a href = /wiki/Help:How_To_pages>guidelines.</a></div>'.
# '</div>';
# echo $o;
#
# }
#
# }
}
}