-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtiki-admin_links.php
More file actions
54 lines (53 loc) · 1.95 KB
/
tiki-admin_links.php
File metadata and controls
54 lines (53 loc) · 1.95 KB
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
<?php
// (c) Copyright 2002-2012 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: tiki-admin_links.php 39467 2012-01-12 19:47:28Z changi67 $
require_once ('tiki-setup.php');
include_once ('lib/featured_links/flinkslib.php');
$access->check_feature('feature_featuredLinks');
$access->check_permission('tiki_p_admin');
$smarty->assign('title', '');
$smarty->assign('type', 'f');
$smarty->assign('position', 1);
if (isset($_REQUEST["generate"])) {
check_ticket('admin-links');
$flinkslib->generate_featured_links_positions();
}
if (!isset($_REQUEST["editurl"])) {
$_REQUEST["editurl"] = 'n';
}
if ($_REQUEST["editurl"] != 'n') {
$info = $flinkslib->get_featured_link($_REQUEST["editurl"]);
if (!$info) {
$smarty->assign('msg', tra("Non-existent link"));
$smarty->display("error.tpl");
die;
}
$smarty->assign('title', $info["title"]);
$smarty->assign('position', $info["position"]);
$smarty->assign('type', $info["type"]);
}
$smarty->assign('editurl', $_REQUEST["editurl"]);
if (isset($_REQUEST["add"])) {
check_ticket('admin-links');
if (!empty($_REQUEST["url"]) && !empty($_REQUEST["url"])) {
if ($_REQUEST["editurl"] == 0) {
$flinkslib->add_featured_link($_REQUEST["url"], $_REQUEST["title"], '', $_REQUEST["position"], $_REQUEST["type"]);
} else {
$flinkslib->update_featured_link($_REQUEST["url"], $_REQUEST["$title"], '', $_REQUEST["position"], $_REQUEST["type"]);
}
}
}
if (isset($_REQUEST["remove"])) {
$access->check_authenticity();
$flinkslib->remove_featured_link($_REQUEST["remove"]);
}
$links = $tikilib->get_featured_links(999999);
$smarty->assign_by_ref('links', $links);
ask_ticket('admin-links');
// disallow robots to index page:
$smarty->assign('metatag_robots', 'NOINDEX, NOFOLLOW');
$smarty->assign('mid', 'tiki-admin_links.tpl');
$smarty->display("tiki.tpl");