-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.php
619 lines (560 loc) · 28 KB
/
index.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
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
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
<?php
/**
* @brief Get journals and display everything nicely
*
* @todo
* - Handle the sticky stuff better; maybe this way
* <div id="stickyleft" class="small-1 columns"></div>
* <div id="journals" class="small-10 columns"></div>
* <div id="stickyright" class="small-1 columns"></div>
* - add conditional parts to part.tpl files or something like that
*
* @todo 2015-08-22
* - It would make much more sense to make "new" rely on the publish date
* instead of the fixed value in input.csv (that only works if you update
* daily and has some quirks)
*
* @todo 2015-11-28
* - The mega menu for filters could be better more flexible; using the <h3>
* headers for show all / show favorites / show new isn't too eye friendly
*
* @author Daniel Zimmel <[email protected]>
* @author Tobias Zeumer <[email protected]>
*/
require('sys/bootstrap.php');
//require_once('./config.php'); // './' makes sure we don't go looking for config.php in the include_path
if (!isset($cfg)) {
echo 'something is very wrong with the configuration';
exit;
}
$lang = $cfg->prefs->current_lang; //Shorthand for current language
// Experimental - testing caching. May be nearly pointless if JT is only used in a local kiosk
if ($cfg->prefs->cache_main_enable) {
$query = (isset($_GET)) ? md5(implode('&', $_GET)) : '';
$cachefile = $cfg->sys->data_cache."index_$query.cache.html";
//NOTE: file_exists() result is cached. not an issue in this case, but
//clearstatcache() needs to be called in cases where the file might be
//deleted between tests in the same script. unlink() updates the cache
if (file_exists($cachefile) && file_exists($cfg->sys->data_journals.'journals.csv')) {
if (filemtime('data/journals/journals.csv') < filemtime($cachefile)) {
echo file_get_contents($cachefile);
exit;
}
// With JournalToc Premium enabled check for json file too
elseif ($cfg->api->jt->premium) {
if (filemtime($cfg->api->jt->outfile) < filemtime($cachefile)) {
echo file_get_contents($cachefile);
exit;
}
}
}
}
ob_start();
require_once($cfg->sys->basepath.'sys/class.ListJournals.php');
/* setup methods & objects */
$lister = new ListJournals($cfg);
$journals = $lister->getJournals();
$journalUpdates = $lister->getJournalUpdates();
?>
<!DOCTYPE html>
<!--[if IE 9]><html class="lt-ie10" lang="en" > <![endif]-->
<html class="no-js" lang="en" data-useragent="Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Trident/6.0)">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title><?php echo strip_tags($cfg->translations['main_tagline'][$lang]) ?></title>
<link rel="stylesheet" href="css/foundation.min.css" />
<link rel="stylesheet" href="css/local.css" />
<link rel="stylesheet" href="css/media.css" />
<link rel="stylesheet" href="css/foundation-icons/foundation-icons.css" />
<script src="js/vendor/modernizr.js"></script>
<style type="text/css" rel="stylesheet">
img.getTOC {background-image: url("<?php echo $cfg->covers->placeholder; ?>");}
</style>
</head>
<!-- tell scripts if caching of tocs is enabled -->
<body data-caching="<?php echo intval($cfg->prefs->cache_toc_enable) ?>">
<!-- Navigation -->
<div class="fixed">
<nav class="top-bar" data-topbar="" data-options="is_hover: false">
<ul class="title-area">
<!-- Title Area -->
<li class="name"><h1><a href="."><?php echo $cfg->translations['main_tagline'][$lang] ?></a></h1></li>
<li class="toggle-topbar menu-icon"><a href="#"><span><?php echo __('menu') ?></span></a></li>
</ul>
<section class="top-bar-section">
<ul class="hide-for-small">
<li><a href="#" id="aboutLink" data-reveal-id="about" class="button radius"><i class="fi-info"></i> <?php echo __('about') ?></a></li>
</ul>
<!-- Right Nav Section -->
<ul class="right">
<li class="divider"></li>
<?php if (count($lister->tagcloud) > 1 && $cfg->prefs->menu_show_tagcloud) { ?>
<li><a href="#" id="myTags" data-reveal-id="tagsPopover"><i class="switcher fi-pencil"></i> <?php echo $cfg->translations['menu_tag'][$lang] ?></a>
</li>
<?php } ?>
<!-- Filters Menu -->
<?php if ($cfg->filters) { /* show filters only if set */?>
<li class="has-dropdown not-click">
<a id="filter-view" href="#"><i class="fi-filter"></i> <?php echo $cfg->translations['menu_filter'][$lang] ?></a>
<?php
/* use filter translations from the config file */
$filters_used = array_column($journals, 'filter'); // Get only the filters set for all journals
$filters_used = array_reduce($filters_used, "array_merge", array()); // $filters_used still is an array of arrays, flatten.
$filters_used = array_count_values($filters_used); // Count occurrences of each filter
// Get all filters that are actually used in journals.csv
foreach ($filters_used as $filter_key => $filter_count) {
$filter_name = (isset($cfg->filters[$filter_key][$lang])) ? $cfg->filters[$filter_key][$lang] : '';
if ($filter_name) {
$filter_list[$filter_name] = '<li><a class="filter" id="filter-'.$filter_key.'" href="#">'.$filter_name.' ('.$filter_count.')</a></li>';
}
}
$columns = 3; // How many columns? @note: currently only 3, bad you get the idea and could easily change it
// Sort alphabetically for current language and output list
if (isset($filter_list)) {
ksort($filter_list);
// Show filters nicely distributed over three columns
$filter_total = count($filter_list);
$mod = $filter_total % $columns; // How many entries don't fit evenly?
//virtual entries (just act as if we had entires evenly divisible by columns)
$virt_entries = ($mod > 0) ? $filter_total + ($columns - $mod) : $filter_total;
// Get part of entries for each column
for ($i = 0; $i <= $columns-1; $i++) {
$start = $i * ceil($virt_entries/$columns);
$end = $start + ceil($virt_entries/$columns)-1;
if ($end > $filter_total-1) $end = $filter_total-$mod;
//echo "start: $start<br>End: $end <br>";
$filter_col[$i] = array_slice($filter_list, $start, $end-$start+1);
}
}
// Prevent notices below
else {
for ($i = 0; $i <= $columns-1; $i++) $filter_col[$i] = array();
}
?>
<!-- START "Megamenu" for filter entries -->
<ul class="dropdown dropdown-wrapper">
<li>
<div>
<div class="small-4 columns">
<ul>
<li class="filter-special-row" id="filter-show-all"><h3><a class="filter" id="filter-reset" href="#"><i class="fi-refresh"></i> <?php echo __('show all') ?></a></h3></li>
<li><?php echo implode("\n", $filter_col[0])?></li>
</ul>
</div>
<div class="small-4 columns">
<ul>
<li class="filter-special-row" id="filter-show-favs"><h3><a class="filter" id="topJ" href="#"><i class="fi-star"></i> <?php echo $cfg->translations['menu_filter_special'][$lang] ?></a></h3></li>
<li><?php echo implode("\n", $filter_col[1])?></li>
</ul>
</div>
<div class="small-4 columns">
<ul>
<li class="filter-special-row" id="filter-show-new"><h3><a class="filter" id="new" href="#"><i class="fi-burst-new"></i> <?php echo __('new issues') ?></a></h3></li>
<li><?php echo implode("\n", $filter_col[2])?></li>
</ul>
</div>
</div>
</li>
</ul>
<!-- END "Megamenu" for filter entries -->
</li>
<?php } ?>
<?php if ($cfg->prefs->menu_show_sort) { ?>
<?php
$sort_current = ($cfg->prefs->default_sort_date) ? $cfg->translations['menu_sort_az'][$lang] : $cfg->translations['menu_sort_date'][$lang];
$sort_alt = ($cfg->prefs->default_sort_date) ? $cfg->translations['menu_sort_date'][$lang] : $cfg->translations['menu_sort_az'][$lang];
?>
<li><a id="switch-sort" href="#"><i class="switcher fi-shuffle"></i>
<span> 
<?php
echo '<span id="sort-alt" data-lang="'.$sort_alt.'">'.$sort_current.'</span>';
?>
</span></a></li>
<?php } ?>
<?php if ($cfg->prefs->menu_show_listview) { ?>
<?php
$list_current = $cfg->translations['menu_list'][$lang];
$list_alt = $cfg->translations['menu_grid'][$lang];
?>
<li><a id="switch-view" href="#"><i class="switcher fi-list"></i>
<span> 
<?php
echo '<span id="list-alt" data-lang="'.$list_alt.'">'.$list_current.'</span>';
?>
</span></a></li>
<?php } ?>
<li><a href="#" id="myArticles" data-reveal-id="cartPopover"><i class="fi-shopping-bag"></i> <?php echo $cfg->translations['menu_basket'][$lang] ?>(<span class="simpleCart_quantity"></span>)</a></li>
<?php echo language_switch($cfg); ?>
</ul>
</section>
</nav>
<?php if (isset($cfg->sys->newInstallation) && $cfg->sys->newInstallation === TRUE) { ?>
<div id="dataUnsaved" data-alert class="alert-box warning radius" style="margin-bottom: 0">
<?php echo __('You are using JournalTouch with demo settings. Head over to <a href="admin/settings.php">Settings</a> to set up you own configuration.') ?>
<a href="#" class="close">×</a>
</div>
<?php } ?>
<?php if (!$cfg->sys->adminSecured) { ?>
<div id="adminUnsecured" data-alert class="alert-box warning radius">
<?php echo __('The admin folder is not secured by an .htaccess file. Anyone has access. Just rename admin/.htaccess.sample to .htaccess if you don\'t care and want to disable this message.') ?>
<a href="#" class="close">×</a>
</div>
<?php } ?>
</div>
<!-- End Navigation -->
<!-- Left and right side elements -->
<!-- Note
1. For letterbox see setLetterBox() in js/local/conduit.js
2. Most (re-)sizing is done via css/media.css -->
<!-- Make a sticky basket -->
<a href="#" id="stickyBasket" class="button radius show-for-xlarge-up" data-reveal-id="cartPopover"><i class="fi-shopping-bag"></i> <?php echo $cfg->translations['main_float_sendArticle'][$lang] ?></a>
<!-- Make a sticky GoUp -->
<a href="#" id="stickyGoUp" class="button round"><i class="fi-arrow-up"></i></a>
<!-- END Left and right side elements -->
<!-- About page -->
<div id="about" class="reveal-modal" data-reveal="">
<div class="row">
<div class="small-12 medium-12 large-12 columns left">
<h2><?php echo __('About') ?></h2>
<?php echo preg_replace(array('/\[/', '/\]/'), array('<', '>'), $cfg->translations['other_about'][$lang]); ?>
</div>
<div class="small-3 small-centered columns">
<a class="button radius" href="checkout.php?action=contact&lang=<?php echo $lang ?>"><i class="fi-comment"></i> <?php echo __('Get in touch!') ?></a>
</div>
</div>
<a class="close-reveal-modal button radius alert">×</a>
</div>
<!-- End Header and Nav -->
<!-- start external link -->
<div id="externalPopover" class="reveal-modal" data-reveal="">
<h3><?php echo __('External Source') ?></h3>
<!-- <a id="frameBack" class="button round" data-history="0" onclick="if ($(this).data('history') < history.length) history.go(-1)"><i class="fi-arrow-left"></i></a> -->
<a class="close-reveal-modal button radius">×</a>
<!-- For preventing browser history for the iframe "externalFrame" it is dynamically created in conduit.js -->
</div>
<!-- end external link -->
<!-- start Tagcloud -->
<?php if (count($lister->tagcloud) > 1 && $cfg->prefs->menu_show_tagcloud) { ?>
<div id="tagsPopover" class="reveal-modal" data-reveal="">
<h3><?php echo __('Tagcloud') ?></h3>
<a class="close-reveal-modal button radius">×</a>
<p><a class="filter" id="filter-reset" href="#"><i class="fi-refresh"></i> <?php echo __('show all') ?></a></p>
<?php echo $lister->getTagcloud(); ?>
</div>
<?php } ?>
<!-- end Tagcloud -->
<div id="cartPopover" class="reveal-modal" data-reveal="" data-clearSeconds="<?php echo $cfg->prefs->clear_basket ?>">
<div class="simpleCart_items"></div>
<div id="cartData" class="clearfix"></div>
<div id="shelfIsEmpty" style="display:none">
<i class="fi-alert"></i> <?php echo __('Your basket is empty.') ?>
</div>
<div id="popoverButtons" class="clearfix">
<a id="checkOutButton" href="javascript:;" class="simpleCart_checkout radius small success button"><i class="fi-share"></i> <?php echo __('Send/Save my articles') ?></a>
<!--<a id="emptyCartButton" href="javascript:;" class="simpleCart_empty radius small alert button"><i class="fi-trash"></i> Empty my basket</a>-->
<a id="emptyConfirmButton" class="radius small alert button" data-reveal-id="emptyConfirm"><i class="fi-trash"></i> <?php echo __('Empty my basket') ?></a>
<a class="close-reveal-modal button radius">×</a>
</div>
</div>
<!--End #cartPopover-->
<!-- Security confirmation on delete -->
<div id="emptyConfirm" class="reveal-modal" data-reveal="">
<h3><?php echo __('Do you really want to empty your basket?') ?></h3>
<a id="emptyCartButton" href="javascript:;" class="simpleCart_empty radius small alert button close-reveal-modal"> <i class="fi-trash"></i> <?php echo __('OK, empty my basket!') ?></a>
<a id="DoNotemptyCartButton" class="radius small success button close-reveal-modal"><i class="fi-trash"></i> <?php echo __('No, keep basket!') ?></a>
</div>
<!-- First Band (Slider) -->
<?php if ($cfg->prefs->show_orbit) { ?>
<div id="view-orbit">
<div class="row">
<div class="large-12 columns" style="padding-top:20px">
<h3><?php echo __('Top Journals') ?></h3>
<?php // print date('M d Y',strtotime('-7 day'))." - " .date('M d Y',strtotime('today')); ?>
</div>
</div>
<div class="row">
<hr />
<div class="medium-3 large-2 columns hide-for-small logo"> </div>
<div class="medium-5 large-7 small-11 columns slideshow-wrapper">
<div class="preloader"></div>
<ul id="myorbit" data-orbit="" data-options="animation_speed: 1000;timer_speed: 3000;bullets: false">
<?php
/* /\* see Class setup *\/ */
foreach ($journals as $j) {
if (!empty($j['topJ'])) {
echo '<li data-orbit-slide="headline">';
echo '<span id="toc-'.$j['id'].'" data-issn="'.$j['id'].'" data-pubdate="'.$j['date'].'"></span>';
echo '<img class="issn getTOC" src="'.$j['img'].'"/>';
echo '<div class="orbit-caption">'.$j['title'].' ('.$j['date'].')</div>';
echo '</li>';
}
}
?>
</ul>
</div>
<div class="medium-4 large-3 columns">
<div class=" panel radius callout" id="filterPanel" style="display:none">
<i class="fi-filter"></i>  Filter active:<span id="filterPanelFilter"></span>
</div>
</div>
</div>
</div>
<hr />
<?php } ?>
<!-- Three-up Content Blocks -->
<div class="row">
<div id="TOCbox" class="small-10 medium-10 large-12 columns">
<!-- A-Z button bar -->
<div id="alphabet" class="button-bar">
<ul class="button-group radius">
<?php
$alphas = range('A', 'Z');
foreach ($alphas as $letter) {
echo '<li><a href="#" class="tiny button secondary">'.$letter.'</a></li>';
}
?>
</ul>
</div>
<!-- timestamp button bar-->
<div id="timewarps" class="button-bar">
<ul class="button-group radius">
<?php
$timewarps = array(
'1d' => 86400, '2d' => 2*86400, '3d' => 3*86400,
'4d' => 4*86400, '5d' => 5*86400, '6d' => 6*86400,
'1w' => 7*86400, '2w' => 14*86400, '3w' => 21*86400,
'1m' => 31*86400, '3m' => 92*86400, '6m' => 183*86400,
'1y' => 365*86400
);
foreach ($timewarps as $label => $timestamp) {
echo '<li><a href="#" class="tiny button secondary" data-timestamp="'.( time() - $timestamp ).'">'.$label.'</a></li>';
}
?>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="panel radius callout" id="filterPanel" style="display:none">
<i class="fi-filter"></i>  <?php echo __('Filter active:') ?>
<span id="filterPanelFilter"></span></div>
</div>
<!-- Search form -->
<form id="search-form">
<div class="row">
<div class="small-9 medium-10 large-12 columns">
<fieldset>
<label class="error">
<input id="search" type="text" placeholder="<?php echo __('Search journal') ?>" />
</label>
<small id="noresults" class="error" style="display:none">
<?php echo __('No journals found') ?>
</small>
</fieldset>
</div>
</div>
</form>
<!-- End Search form -->
<!-- show updates - this is only some example code how to include the latest journal updates -->
<!-- please refer to the README on how to use it -->
<!--
<div class="row">
<div id="updateBox" class="small-12 columns">
<ul>
<?php
// if (!empty($journalUpdates)) {
// foreach ($journalUpdates as $j) {
// print '<li><a href="#">' . $j['title'] . '</a> (last update <time class="timeago" datetime="'.$j['timestr'].'">' . $j['timestr'] . '</time>)</li>';
// }
// }
?>
</ul>
</div>
</div>
-->
<!-- Grid View (Thumbnails)
Switching to List View is done via conduit.js -->
<div id="journalList" class="row gridview <?php $sortclass = ($cfg->prefs->default_sort_date) ? 'datesorted' : 'azsorted'; echo $sortclass; ?>">
<?php
/* see Class setup */
foreach ($journals as $j) {
/* convert found date of last update in the data to a timestring (gets evaluated with jquery.timeago.js) */
$timestring = ($j['new']) ? date('c', strtotime($j['new'])) : '';
$wF = '<time class="timeago" datetime="'.$timestring.'">'.$timestring.'</time>';
$new_issues = ($j['new']) ? ' new' : '';
$len_title = strlen($j['title']);
$nbr_title = ($len_title < 50) ? $j['title'] : substr($j['title'], 0, strrpos($j['title'], ' ', $len_title * -1 + 50)).' ...';
$filterclasses = '';
foreach ($j['filter'] as $filtertext) {
$filterclasses .= 'filter-'.$filtertext.' ';
}
echo '<div class="listitem search-filter '.$filterclasses.$j['tags'].' '.$j['topJ'].$new_issues.'" data-title="'.$j['title'].'" data-issn="'.$j['id'].'" data-pubdate="'. strtotime($j['date']).'">';
echo '<span id="toc-'.$j['id'].'" data-issn="'.$j['id'].'" data-pubdate="'.$j['date'].'"></span>';
echo '<img class="getTOC '.$j['id'].'" src="img/lazyloader.gif" data-src="'.$j['img'].'">';
// Set correct toc link
// @todo: seriously; make this better/cleaner
$toclink = $rss = '';
if ($j['metaGotToc'] == 'JToc') {
$toclink = '<a href="http://www.journaltocs.ac.uk/index.php?action=tocs&issn='.$j['issn'].'" class="button popup meta_toc" title="'.__('Via JournalTocs').'"><i class="fi-like"></i> '.$cfg->translations['meta_toc'][$lang].'</a> ';
// RSS only if JournalTocs is source
if ($cfg->prefs->rss && $j['metaGotToc'] == 'JToc') $rss = '<a href="rss.php?issn='.$j['id'].'" class="button popup meta_rss"><i class="fi-rss"></i> '.__('RSS').'</a> ';
}
elseif ($j['metaGotToc'] == 'CRtoc') {
// Crossref does not work in a frame (obviously), just get toc JournalTouch style
//$toclink = 'http://search.crossref.org/?type=Journal+Article&sort=year&q='.$j['issn'];
$toclink = '<a href="#" class="button cr_getTOC meta_toc" title="'.__('Via CrossRef').'"><i class="fi-like"></i> '.$cfg->translations['meta_toc'][$lang].'</a> ';
}
else {
$toclink = '<a href="#" class="button meta_toc" title="'.__('No toc available').'"><i class="fi-dislike"></i> '.$cfg->translations['meta_toc'][$lang].'</a> ';
}
$meta = '';
//$meta = $j['metaGotToc'];
$meta .= $toclink;
$meta .= $rss;
$link = ($cfg->prefs->inst_service) ? $cfg->prefs->inst_service.$j['issn'] : '';
$meta .= (($j['metaOnline'] && $link) ? ' <a href="'.$link.'" class="button popup meta_library"><i class="'.$j['metaOnline'].'"></i> '.$cfg->translations['meta_inst_service'][$lang].'</a>': '');
$meta .= (($j['metaWebsite']) ? ' <a href="'.$j['metaWebsite'].'" class="button popup meta_website"><i class="fi-home"></i> '.$cfg->translations['meta_journalHP'][$lang].'</a>': '');
$print_meta = (($j['metaPrint']) ? 'class="'.$j['metaPrint'].'"' : "");
$meta .= (($j['metaShelfmark']) ? ' <span class="button meta_print"><i '.$print_meta.'> '.$j['metaShelfmark'].'</i></span>' : " ");
if ($meta && $cfg->prefs->show_metainfo_list) {
echo '<div class="metaInfo">'.$meta.'</div>';
}
/* Hide meta info in list, only show above toc */
elseif ($meta && !$cfg->prefs->show_metainfo_list && $cfg->prefs->show_metainfo_toc) {
echo '<div class="metaInfo hidden">'.$meta.'</div>';
}
echo '<div class="getTOC title">';
echo '<h5 title="'.$j['title'].'">'.$nbr_title.'</h5>';
echo ($new_issues) ? '<span class="subheader fresh">['.__("last update") .' '. $wF . ']</span>' : '';
echo '</div></div>';
}
?>
</div>
<!-- End Grid View (Thumbnails) -->
<!-- Box für Toc-Inhalte, z.B. genutzt von Grid (s. js) -->
<div id="tocModal" class="reveal-modal xlarge" data-reveal="">
<div class="toc preloader"></div>
<!-- This alert box will be switched on if something goes wrong (see conduit.js) -->
<div data-alert="" id="tocAlertBox" class="alert-box warning invisible">
<span id="tocAlertText"><?php echo __('Something seems to be wrong with the network') ?></span>
<a class="button radius" href="checkout.php?action=contact&lang=<?php echo $lang ?>&message=Feed%20error%20report&body=Error%20report%20from%20JournalTouch%20for%20ISSN:%200000-0000"><i class="fi-mail"></i> <?php echo __('Please notify us!') ?></a>
</div>
<!-- This alert box will be switched on if no tocs are found (see conduit.js) -->
<div data-alert="" id="tocNotFoundBox" class="alert-box info invisible">
<span id="tocAlertText"><?php echo __('No table of contents found! Are you interested in this title?') ?></span>
<a class="button radius" href="checkout.php?action=contact&lang=<?php echo $lang ?>&message=The%20table%20of%20contents%20for%20this%20journal%20seems%20to%20be%20missing%20for%20ISSN:%200000-0000"><i class="fi-comment"></i> <?php echo __('Please notify us!') ?></a>
</div>
<a class="close-reveal-modal button radius alert">×</a>
</div>
</div>
<footer>
<div class="row">
<div class="small-12 columns">
<div class="large-6 columns">
<p>
<em>JournalTouch</em> © 2014 MPI Collective Goods Library, Bonn</p>
<p><?php echo __('Tables of contents provided by <a href="http://www.crossref.org">CrossRef</a> and <a href="http://www.journaltocs.ac.uk/">JournalTocs</a>') ?></p>
</div>
<div class="large-6 columns">
<ul class="inline-list right">
<li><a class="button radius" href="checkout.php?action=contact&lang=<?php echo $lang ?>"><i class="fi-comment"></i> <?php echo __('Get in touch!') ?></a></li>
</ul>
</div>
</div>
</div>
</footer>
<!-- a fancy screensaver when screen is idle (see css for switching)
See Admin settings for timer; disabled if set to zero -->
<div id="screensaver" style="display:none" data-activateSeconds="<?php echo $cfg->prefs->screensaver_secs ?>" data-animateSpeed="<?php echo $cfg->prefs->screensaver_speed ?>">
<div class="row">
<div class="small-12 medium-12 large-12 columns left">
<h1><?php echo __('Touch me!') ?></h1>
<h2><?php echo __('What is this?') ?></h2>
<?php echo preg_replace(array('/\[/', '/\]/'), array('<', '>'), $cfg->translations['other_about'][$lang]); ?>
</div>
</div>
<div class="row"><h1><?php echo __('Touch the screen to get started...') ?></h1></div>
<div class="row"><p class="text-center"><img src="img/logo.png" /></p></div>
</div>
<!-- end screensaver -->
<script src="js/vendor/jquery.js"></script>
<script src="js/foundation.min.js"></script>
<script src="js/local/simpleCart.custom.js"></script>
<script src="js/vendor/jquery.unveil.min.js"></script>
<script src="js/vendor/waypoints.min.js"></script>
<script src="js/vendor/jquery.timeago.js"></script>
<script src="languages/<?php echo $lang ?>/jquery.timeago.<?php echo $lang ?>.js"></script>
<script src="js/vendor/tinysort.min.js"></script>
<script src="js/local/conduit.js"></script>
<script src="js/vendor/jquery.quicksearch.min.js"></script>
<script>
simpleCart({
checkout: {
type: "SendForm",
url: "checkout.php",
extra_data: {
lang: "<?php echo $lang ?>"
}
},
cartColumns: [
{ view: function( item, column ) {
var itemname, itemtitle;
itemname = item.get('name');
itemtitle = item.get('title');
if (typeof itemtitle !== 'undefined' && itemtitle !== '') {
return '<div class="item-name">'+itemtitle+' <i alt="we have citation data" class="fi-paperclip"></i></div>';
} else {
return '<div class="item-name">'+itemname+'</div>';
}
},
label: false
},
{
view: "remove" ,
text: "<?php echo __('remove') ?> <i class=\"fi-trash\"></i>" ,
label: false
}
]
});
simpleCart.bind( 'beforeRemove' , function(){
if ($(".row-1").length == false) {
$("#shelfIsEmpty").show();
$('#checkOutButton, #emptyCartButton, #emptyConfirmButton').hide();
// remove class to button (for CSS formatting)
$('#myArticles').removeClass('full');
} else {
$('#checkOutButton, #emptyCartButton, #emptyConfirmButton').show();
}
});
simpleCart.bind( 'afterAdd' , function(){
// add class to button (for CSS formatting)
$('#myArticles').addClass('full');
$("#shelfIsEmpty").hide();
$('#checkOutButton, #emptyCartButton, #emptyConfirmButton').show();
});
simpleCart.bind( 'load' , function(){
if (simpleCart.quantity() > 0) {
// add class to button (for CSS formatting)
$("#shelfIsEmpty").hide();
$('#checkOutButton, #emptyCartButton, #emptyConfirmButton').show();
$('#myArticles').addClass('full');
}
});
</script>
<script>
$(document).foundation();
var doc = document.documentElement;
doc.setAttribute('data-useragent', navigator.userAgent);
</script>
<!-- START Kiosk policies -->
<?php echo $cfg->sys->kioskPolicy_HTML ?>
<!-- END Kiosk policies -->
</body>
</html>
<?php
if ($cfg->prefs->cache_main_enable) {
file_put_contents($cachefile, ob_get_contents());
}
ob_end_flush();
?>