forked from tikiorg/tiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tiki-admin.php
670 lines (627 loc) · 21.6 KB
/
tiki-admin.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
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
<?php
/**
* @package tikiwiki
*/
// (c) Copyright 2002-2016 by authors of the Tiki Wiki CMS Groupware Project
//
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
// $Id$
$section = 'admin';
require_once('tiki-setup.php');
$adminlib = TikiLib::lib('admin');
$auto_query_args = ['page'];
$access->check_permission('tiki_p_admin');
$access->checkAuthenticity();
$logslib = TikiLib::lib('logs');
/**
* Display feedback on prefs changed
*
* @param string $name Name of feature
* @param string $message Other message
* @param int $st Type of change (0=disabled, 1=enabled, 2=changed, 3=info, 4=reset)
* @param int $num unknown
* @return void
*/
function add_feedback($name, $message, $st, $num = null)
{
TikiLib::lib('prefs')->addRecent($name);
Feedback::add(['num' => $num,
'mes' => $message,
'st' => $st,
'name' => $name,
'tpl' => 'pref',], 'session');
}
/**
* simple_set_toggle
*
* @param mixed $feature
* @access public
* @return void
*/
function simple_set_toggle($feature)
{
global $prefs;
$logslib = TikiLib::lib('logs');
$tikilib = TikiLib::lib('tiki');
if (isset($_REQUEST[$feature]) && $_REQUEST[$feature] == 'on') {
if ((! isset($prefs[$feature]) || $prefs[$feature] != 'y')) {
// not yet set at all or not set to y
if ($tikilib->set_preference($feature, 'y')) {
add_feedback($feature, tr('%0 enabled', $feature), 1, 1);
$logslib->add_action('feature', $feature, 'system', 'enabled');
}
}
} else {
if ((! isset($prefs[$feature]) || $prefs[$feature] != 'n')) {
// not yet set at all or not set to n
if ($tikilib->set_preference($feature, 'n')) {
add_feedback($feature, tr('%0 disabled', $feature), 0, 1);
$logslib->add_action('feature', $feature, 'system', 'disabled');
}
}
}
TikiLib::lib('cache')->invalidate('allperms');
}
/**
* simple_set_value
*
* @param mixed $feature
* @param string $pref
* @param mixed $isMultiple
* @access public
* @return void
*/
function simple_set_value($feature, $pref = '', $isMultiple = false)
{
global $prefs;
$logslib = TikiLib::lib('logs');
$tikilib = TikiLib::lib('tiki');
$old = $prefs[$feature];
if (isset($_REQUEST[$feature])) {
if ($pref != '') {
if ($tikilib->set_preference($pref, $_REQUEST[$feature])) {
$prefs[$feature] = $_REQUEST[$feature];
}
} else {
$tikilib->set_preference($feature, $_REQUEST[$feature]);
}
} elseif ($isMultiple) {
// Multiple selection controls do not exist if no item is selected.
// We still want the value to be updated.
if ($pref != '') {
if ($tikilib->set_preference($pref, [])) {
$prefs[$feature] = $_REQUEST[$feature];
}
} else {
$tikilib->set_preference($feature, []);
}
}
if (isset($_REQUEST[$feature]) && $old != $_REQUEST[$feature]) {
add_feedback($feature, ($_REQUEST[$feature]) ? tr('%0 set', $feature) : tr('%0 unset', $feature), 2);
$msg = '';
if (is_array($_REQUEST[$feature]) && is_array($old)) {
$newCount = count($_REQUEST[$feature]);
$oldCount = count($old);
if ($newCount > $oldCount) {
$added = $newCount - $oldCount;
$item = $added == 1 ? tr('item added') : tr('items added');
$msg = $added . ' ' . $item;
} elseif ($oldCount > $newCount) {
$deleted = $oldCount - $newCount;
$item = $deleted == 1 ? tr('item deleted') : tr('items deleted');
$msg = $deleted . ' ' . $item;
}
} else {
$msg = $old . ' => ' . $_REQUEST[$feature];
}
$logslib->add_action('feature', $feature, 'system', $msg);
}
TikiLib::lib('cache')->invalidate('allperms');
}
$blackL = TikiLib::lib('blacklist');
$crumbs[] = new Breadcrumb(tra('Control Panels'), tra('Sections'), 'tiki-admin.php', 'Admin+Home', tra('Help on Configuration Sections', '', true));
// Default values for AdminHome
$admintitle = tra('Control Panels');
$helpUrl = 'Admin+Home';
$helpDescription = $description = '';
$url = 'tiki-admin.php';
$adminPage = '';
$prefslib = TikiLib::lib('prefs');
if (isset($_REQUEST['pref_filters'])) {
$prefslib->setFilters($_REQUEST['pref_filters']);
}
/**
* If blacklist preferences have been updated and its also not being disabled
* Then update the database with the selection.
**/
if (isset($_POST['pass_blacklist'])) { // if preferences were updated and blacklist feature is enabled (or is being enabled)
$pass_blacklist_file = $jitPost->pass_blacklist_file->striptags();
$userfile = explode('-', $pass_blacklist_file);
$userfile = $userfile[3];
if ($userfile) { // if the blacklist is a user generated file
$passDir = 'storage/pass_blacklists/';
} else {
$passDir = 'lib/pass_blacklists/';
}
if ($pass_blacklist_file === 'auto') {
if ($_POST['min_pass_length'] != $GLOBALS['prefs']['min_pass_length'] ||
$_POST['pass_chr_num'] != $GLOBALS['prefs']['pass_chr_num'] ||
$_POST['pass_chr_special'] != $GLOBALS['prefs']['pass_chr_special']) { // if blacklist is auto and an option is changed that could effect the selection
$prefname = implode('-', $blackL->selectBestBlacklist($_POST['pass_chr_num'], $_POST['pass_chr_special'], $_POST['min_pass_length']));
$filename = $passDir . $prefname . '.txt';
$tikilib->set_preference('pass_auto_blacklist', $prefname);
$blackL->loadBlacklist(dirname($_SERVER['SCRIPT_FILENAME']) . '/' . $filename);
}
} elseif ($pass_blacklist_file != $GLOBALS['prefs']['pass_blacklist_file']) { // if manual selection mode has been changed
$filename = $passDir . $pass_blacklist_file . '.txt';
$blackL->loadBlacklist(dirname($_SERVER['SCRIPT_FILENAME']) . '/' . $filename);
}
}
$temp_filters = isset($_REQUEST['filters']) ? explode(' ', $_REQUEST['filters']) : null;
$smarty->assign('pref_filters', $prefslib->getFilters($temp_filters));
if (isset($_REQUEST['lm_preference'])) {
if ($access->ticketMatch()) {
$changes = $prefslib->applyChanges((array) $_REQUEST['lm_preference'], $_REQUEST);
foreach ($changes as $pref => $val) {
if ($val['type'] == 'reset') {
add_feedback($pref, tr('%0 reset', $pref), 4);
$logslib->add_action('feature', $pref, 'system', 'reset');
} else {
$value = $val['new'];
if ($value == 'y') {
add_feedback($pref, tr('%0 enabled', $pref), 1, 1);
$logslib->add_action('feature', $pref, 'system', 'enabled');
} elseif ($value == 'n') {
add_feedback($pref, tr('%0 disabled', $pref), 0, 1);
$logslib->add_action('feature', $pref, 'system', 'disabled');
} else {
add_feedback($pref, tr('%0 set', $pref), 1, 1);
$logslib->add_action('feature', $pref, 'system', (is_array($val['old']) ? implode($val['old'], ',') : $val['old']) . '=>' . (is_array($value) ? implode($value, ',') : $value));
}
/*
Enable/disable addreference/showreference plugins alognwith references feature.
*/
if ($pref == 'feature_references') {
$tikilib->set_preference('wikiplugin_addreference', $value);
$tikilib->set_preference('wikiplugin_showreference', $value);
/* Add/Remove the plugin toolbars from the editor */
$toolbars = ['wikiplugin_addreference', 'wikiplugin_showreference'];
$t_action = ($value == 'y') ? 'add' : 'remove';
$tikilib->saveEditorToolbars($toolbars, 'global', $t_action);
}
}
}
}
}
if (isset($_REQUEST['lm_criteria'])) {
set_time_limit(0);
try {
$smarty->assign('lm_criteria', $_REQUEST['lm_criteria']);
$results = $prefslib->getMatchingPreferences($_REQUEST['lm_criteria']);
$results = array_slice($results, 0, 50);
$smarty->assign('lm_searchresults', $results);
} catch (ZendSearch\Lucene\Exception\ExceptionInterface $e) {
Feedback::warning(['mes' => $e->getMessage(), 'title' => tr('Search error')]);
$smarty->assign('lm_criteria', '');
$smarty->assign('lm_searchresults', '');
}
} else {
$smarty->assign('lm_criteria', '');
$smarty->assign('lm_searchresults', '');
}
$smarty->assign('indexNeedsRebuilding', $prefslib->indexNeedsRebuilding());
if (isset($_REQUEST['prefrebuild'])) {
$prefslib->rebuildIndex();
header('Location: ' . $base_url . 'tiki-admin.php');
}
$admin_icons = [
"general" => [
'title' => tr('General'),
'description' => tr('Global site configuration, date formats, etc.'),
'help' => 'General Admin',
],
"features" => [
'title' => tr('Features'),
'description' => tr('Switches for major features'),
'help' => 'Features Admin',
],
"login" => [
'title' => tr('Log in'),
'description' => tr('User registration, remember me cookie settings and authentication methods'),
'help' => 'Login Config',
],
"user" => [
'title' => tr('User Settings'),
'description' => tr('User related preferences like info and picture, features, messages and notification, files, etc'),
'help' => 'User Settings',
],
"profiles" => [
'title' => tr('Profiles'),
'description' => tr('Repository configuration, browse and apply profiles'),
'help' => 'Profiles',
],
"look" => [
'title' => tr('Look & Feel'),
'description' => tr('Theme selection, layout settings and UI effect controls'),
'help' => 'Look and Feel',
],
"textarea" => [
'title' => tr('Editing and Plugins'),
'description' => tr('Text editing settings applicable to many areas. Plugin activation and plugin alias management'),
'help' => 'Text area',
],
"module" => [
'title' => tr('Modules'),
'description' => tr('Module appearance settings'),
'help' => 'Module',
],
"i18n" => [
'title' => tr('i18n'),
'description' => tr('Internationalization and localization - multilingual features'),
'help' => 'i18n',
],
"metatags" => [
'title' => tr('Meta Tags'),
'description' => tr('Information to include in the header of each page'),
'help' => 'Meta Tags',
],
"maps" => [
'title' => tr('Maps'),
'description' => tr('Settings and features for maps'),
'help' => 'Maps',
'disabled' => false,
],
"performance" => [
'title' => tr('Performance'),
'description' => tr('Server performance settings'),
'help' => 'Performance',
],
"security" => [
'title' => tr('Security'),
'description' => tr('Site security settings'),
'help' => 'Security',
],
"comments" => [
'title' => tr('Comments'),
'description' => tr('Comments settings'),
'help' => 'Comments',
],
"rss" => [
'title' => tr('Feeds'),
'help' => 'Feeds User',
'description' => tr('Outgoing RSS feed setup'),
],
"connect" => [
'title' => tr('Connect'),
'help' => 'Connect',
'description' => tr('Tiki Connect - join in!'),
],
"rating" => [
'title' => tr('Rating'),
'help' => 'Rating',
'description' => tr('Rating settings'),
'disabled' => $prefs['wiki_simple_ratings'] !== 'y' &&
$prefs['wiki_comments_simple_ratings'] !== 'y' &&
$prefs['comments_vote'] !== 'y' &&
$prefs['rating_advanced'] !== 'y' &&
$prefs['trackerfield_rating'] !== 'y' &&
$prefs['article_user_rating'] !== 'y' &&
$prefs['rating_results_detailed'] !== 'y' &&
$prefs['rating_smileys'] !== 'y',
],
"search" => [
'title' => tr('Search'),
'description' => tr('Search configuration'),
'help' => 'Search',
'disabled' => $prefs['feature_search'] !== 'y' &&
$prefs['feature_search_fulltext'] !== 'y',
],
"wiki" => [
'title' => tr('Wiki'),
'disabled' => $prefs['feature_wiki'] != 'y',
'description' => tr('Wiki page settings and features'),
'help' => 'Wiki Config',
],
"fgal" => [
'title' => tr('File Galleries'),
'disabled' => $prefs['feature_file_galleries'] != 'y',
'description' => tr('Defaults and configuration for file galleries'),
'help' => 'File Gallery',
],
"blogs" => [
'title' => tr('Blogs'),
'disabled' => $prefs['feature_blogs'] != 'y',
'description' => tr('Settings for blogs'),
'help' => 'Blog',
],
"gal" => [
'title' => tr('Image Galleries'),
'disabled' => $prefs['feature_galleries'] != 'y',
'description' => tr('Defaults and configuration for image galleries (will be phased out in favour of file galleries)'),
'help' => 'Image Gallery',
],
"articles" => [
'title' => tr('Articles'),
'disabled' => $prefs['feature_articles'] != 'y',
'description' => tr('Settings and features for articles'),
'help' => 'Articles',
],
"forums" => [
'title' => tr('Forums'),
'disabled' => $prefs['feature_forums'] != 'y',
'description' => tr('Settings and features for forums'),
'help' => 'Forums-Admin',
],
"trackers" => [
'title' => tr('Trackers'),
'disabled' => $prefs['feature_trackers'] != 'y',
'description' => tr('Settings and features for trackers'),
'help' => 'Trackers-Admin',
],
"polls" => [
'title' => tr('Polls'),
'disabled' => $prefs['feature_polls'] != 'y',
'description' => tr('Settings and features for polls'),
'help' => 'Polls',
],
"calendar" => [
'title' => tr('Calendar'),
'disabled' => $prefs['feature_calendar'] != 'y',
'description' => tr('Settings and features for calendars'),
'help' => 'Calendar',
],
"category" => [
'title' => tr('Categories'),
'disabled' => $prefs['feature_categories'] != 'y',
'description' => tr('Settings and features for categories'),
'help' => 'Categories-Admin',
],
"workspace" => [
'title' => tr('Workspaces'),
'disabled' => $prefs['workspace_ui'] != 'y' && $prefs['feature_areas'] != 'y',
'description' => tr('Configure workspace feature'),
'help' => 'Workspace',
],
"score" => [
'title' => tr('Score'),
'disabled' => $prefs['feature_score'] != 'y',
'description' => tr('Values of actions for users rank score'),
'help' => 'Score',
],
"freetags" => [
'title' => tr('Tags'),
'disabled' => $prefs['feature_freetags'] != 'y',
'description' => tr('Settings and features for tags'),
'help' => 'Tags',
],
"faqs" => [
'title' => tr('FAQs'),
'disabled' => $prefs['feature_faqs'] != 'y',
'description' => tr('Settings and features for FAQs'),
'help' => 'FAQ',
],
"directory" => [
'title' => tr('Directory'),
'disabled' => $prefs['feature_directory'] != 'y',
'description' => tr('Settings and features for directory of links'),
'help' => 'Directory',
],
"copyright" => [
'title' => tr('Copyright'),
'disabled' => $prefs['feature_copyright'] != 'y',
'description' => tr('Site-wide copyright information'),
'help' => 'Copyright',
],
"messages" => [
'title' => tr('Messages'),
'disabled' => $prefs['feature_messages'] != 'y',
'description' => tr('Message settings'),
'help' => 'Inter-User Messages',
],
"webmail" => [
'title' => tr('Webmail'),
'disabled' => $prefs['feature_webmail'] != 'y',
'description' => tr('Webmail settings'),
'help' => 'Webmail',
],
"wysiwyg" => [
'title' => tr('Wysiwyg'),
'disabled' => $prefs['feature_wysiwyg'] != 'y',
'description' => tr('Options for WYSIWYG editor'),
'help' => 'Wysiwyg',
],
"ads" => [
'title' => tr('Banners'),
'disabled' => $prefs['feature_banners'] != 'y',
'description' => tr('Site advertisements and notices'),
'help' => 'Banner-Admin',
],
"intertiki" => [
'title' => tr('InterTiki'),
'disabled' => $prefs['feature_intertiki'] != 'y',
'description' => tr('Set up links between Tiki servers'),
'help' => 'InterTiki',
],
"semantic" => [
'title' => tr('Semantic Links'),
'disabled' => $prefs['feature_semantic'] != 'y',
'description' => tr('Manage semantic wiki links'),
'help' => 'Semantic Admin',
],
"webservices" => [
'title' => tr('Webservices'),
'disabled' => $prefs['feature_webservices'] != 'y',
'description' => tr('Register and manage web services'),
'help' => 'WebServices',
],
"sefurl" => [
'title' => tr('SEF URL'),
'disabled' => $prefs['feature_sefurl'] != 'y' && $prefs['feature_canonical_url'] != 'y',
'description' => tr('Search Engine Friendly URLs'),
'help' => 'Search-Engine-Friendly-URL',
],
"video" => [
'title' => tr('Video'),
'disabled' => $prefs['feature_kaltura'] != 'y',
'description' => tr('Video integration configuration'),
'help' => 'Video-Admin',
],
"payment" => [
'title' => tr('Payment'),
'disabled' => $prefs['payment_feature'] != 'y',
'description' => tr('Payment settings'),
'help' => 'Payment',
],
"socialnetworks" => [
'title' => tr('Social networks'),
'disabled' => $prefs['feature_socialnetworks'] != 'y',
'description' => tr('Configure social networks integration'),
'help' => 'Social Networks',
],
"community" => [
'title' => tr('Community'),
'description' => tr('User specific features and settings'),
'help' => 'Community',
],
"share" => [
'title' => tr('Share'),
'disabled' => $prefs['feature_share'] != 'y',
'description' => tr('Configure share feature'),
'help' => 'Share',
],
"stats" => [
'title' => tr('Statistics'),
// 'disabled' => $prefs['feature_stats'] != 'y',
'description' => tr('Configure statistics reporting for your site usage'),
'help' => 'Statistics-Admin',
],
"print" => [
'title' => tr('Print Settings'),
'description' => tr('Settings and features for print versions and pdf generation'),
'help' => 'Print Setting-Admin',
],
"packages" => [
'title' => tr('Packages'),
'description' => tr('External packages installation and management'),
'help' => 'Packages',
],
"rtc" => [
'title' => tr('RTC'),
'description' => tr('Real-time collaboration tools'),
'help' => 'RTC',
],
];
if (isset($_REQUEST['page'])) {
$adminPage = $_REQUEST['page'];
// Check if the associated incude_*.php file exists. If not, check to see if it might exist in the Addons.
// If it exists, include the associated file
$utilities = new TikiAddons_Utilities();
if (file_exists("admin/include_$adminPage.php")) {
include_once("admin/include_$adminPage.php");
} elseif ($filepath = $utilities->getAddonFilePath("admin/include_$adminPage.php")) {
include_once($filepath);
}
$url = 'tiki-admin.php' . '?page=' . $adminPage;
if (isset($admin_icons[$adminPage])) {
$admin_icon = $admin_icons[$adminPage];
$admintitle = $admin_icon['title'];
$description = isset($admin_icon['description']) ? $admin_icon['description'] : '';
$helpUrl = isset($admin_icon['help']) ? $admin_icon['help'] : '';
}
$helpDescription = tr("Help on %0 Config", $admintitle);
$smarty->assign('include', $adminPage);
$smarty->assign('template_not_found', 'n');
if (substr($adminPage, 0, 3) == 'ta_' && ! file_exists("admin/include_$adminPage.tpl")) {
$addonadmintplfile = $utilities->getAddonFilePath("templates/admin/include_$adminPage.tpl");
if (! file_exists($addonadmintplfile)) {
$smarty->assign('include', 'missing_addon_page');
}
if (! $utilities->checkAddonActivated(substr($adminPage, 3))) {
$smarty->assign('include', 'addon_inactive');
}
} elseif (! file_exists("templates/admin/include_$adminPage.tpl")) {
// Graceful error management when URL is wrong for admin panel
$smarty->assign('template_not_found', 'y');
} else {
$smarty->assign('template_not_found', 'n');
}
//for most admin include page forms, need to redirect as changes to one pref can affect display of others
//however other forms that perform actions other than changing preferences should not redirect to avoid infinite loops
//for these add a hidden input named redirect with a value of 0
if ($access->ticketMatch() && (! isset($_REQUEST['redirect']) || $_REQUEST['redirect'] === 1) && ! isset($_POST['saveblacklist']) && ! isset($_POST['viewblacklist'])) {
$access->redirect($_SERVER['REQUEST_URI'], '', 200);
}
} else {
$smarty->assign('include', 'list_sections');
$smarty->assign('admintitle', 'Control Panels');
$smarty->assign('description', 'Home Page for Administrators');
$smarty->assign('headtitle', breadcrumb_buildHeadTitle($crumbs));
$smarty->assign('description', $crumbs[0]->description);
}
$headerlib->add_cssfile('themes/base_files/feature_css/admin.css');
if (isset($admintitle) && isset($description)) {
$crumbs[] = new Breadcrumb($admintitle, $description, $url, $helpUrl, $helpDescription);
$smarty->assign_by_ref('admintitle', $admintitle);
$headtitle = breadcrumb_buildHeadTitle($crumbs);
$smarty->assign_by_ref('headtitle', $headtitle);
$smarty->assign_by_ref('helpUrl', $helpUrl);
$smarty->assign_by_ref('description', $description);
}
// VERSION TRACKING
$forcecheck = ! empty($_GET['forcecheck']);
// Versioning feature has been enabled, so if the time is right, do a live
// check, otherwise display the stored data.
if ($prefs['feature_version_checks'] == 'y' || $forcecheck) {
$checker = new Tiki_Version_Checker;
$checker->setVersion($TWV->version);
$checker->setCycle($prefs['tiki_release_cycle']);
$expiry = $tikilib->now - $prefs['tiki_version_check_frequency'];
$upgrades = $checker->check(
function ($url) use ($expiry) {
$cachelib = TikiLib::lib('cache');
$tikilib = TikiLib::lib('tiki');
$content = $cachelib->getCached($url, 'http', $expiry);
if ($content === false) {
$content = $tikilib->httprequest($url);
$cachelib->cacheItem($url, $content, 'http');
}
return $content;
}
);
$smarty->assign(
'upgrade_messages',
array_map(
function ($upgrade) {
return $upgrade->getMessage();
},
$upgrades
)
);
}
foreach ($admin_icons as &$admin_icon) {
$admin_icon = array_merge([ 'disabled' => false, 'description' => ''], $admin_icon);
}
// SSL setup
$haveMySQLSSL = $tikilib->haveMySQLSSL();
$smarty->assign('haveMySQLSSL', $haveMySQLSSL);
if ($haveMySQLSSL) {
$isSSL = $tikilib->isMySQLConnSSL();
} else {
$isSSL = false;
}
$smarty->assign('mysqlSSL', $isSSL);
$smarty->assign('admin_icons', $admin_icons);
// disallow robots to index page:
$smarty->assign('metatag_robots', 'NOINDEX, NOFOLLOW');
// Display the template
$smarty->assign('adminpage', $adminPage);
$smarty->assign('mid', 'tiki-admin.tpl');
$smarty->assign('trail', $crumbs);
$smarty->assign('crumb', count($crumbs) - 1);
include_once('installer/installlib.php');
$installer = new Installer;
$smarty->assign('db_requires_update', $installer->requiresUpdate());
$smarty->assign('installer_not_locked', $installer->checkInstallerLocked());
$smarty->assign('search_index_outdated', \TikiLib::lib('unifiedsearch')->isOutdated());
$smarty->display('tiki.tpl');