-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcategorize_list.php
executable file
·99 lines (86 loc) · 3.96 KB
/
categorize_list.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
<?php
// $Id: /cvsroot/tikiwiki/tiki/categorize_list.php,v 1.30.2.5 2007-12-19 22:50:15 sylvieg Exp $
// Copyright (c) 2002-2007, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
// 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.
//this script may only be included - so its better to err & die if called directly.
//smarty is not there - we need setup
if (strpos($_SERVER["SCRIPT_NAME"],basename(__FILE__)) !== false) {
header("location: index.php");
exit;
}
require_once('tiki-setup.php');
global $prefs, $userlib;
$smarty->assign('mandatory_category', '-1');
if ($prefs['feature_categories'] == 'y') {
global $categlib, $user; include_once ('lib/categories/categlib.php');
$smarty->assign('cat_categorize', 'n');
if (isset($_REQUEST["cat_categorize"]) && $_REQUEST["cat_categorize"] == 'on') {
$smarty->assign('cat_categorize', 'y');
}
$cats = $categlib->get_object_categories($cat_type, $cat_objid);
if ($prefs['feature_wikiapproval'] == 'y' && $prefs['wikiapproval_sync_categories'] == 'y' && !$cats
&& $cat_type == 'wiki page' && substr($cat_objid, 0, strlen($prefs['wikiapproval_prefix'])) == $prefs['wikiapproval_prefix']
&& !$tikilib->page_exists($cat_objid) ) {
// to pre-populate categories of original page if this is the first creation of a staging page
$approvedPageName = substr($cat_objid, strlen($prefs['wikiapproval_prefix']));
$cats = $categlib->get_object_categories($cat_type, $approvedPageName);
$cats = array_diff($cats,Array($prefs['wikiapproval_approved_category']));
}
if ($cat_type == 'wiki page' || $cat_type == 'blog' || $cat_type == 'image gallery' || $cat_type == 'mypage') {
$ext = ($cat_type == 'wiki page')? 'wiki':str_replace(' ', '_', $cat_type);
$pref = 'feature_'.$ext.'_mandatory_category';
if ($prefs[$pref] > 0) {
$all_categories = $categlib->list_categs($prefs[$pref]);
} else {
$all_categories = $categlib->list_categs();
}
$smarty->assign('mandatory_category', $prefs[$pref]);
} else
$all_categories = $categlib->list_categs();
$categories = array();
for ($i = 0; $i < count($all_categories); $i++) {
if($tikilib->user_has_perm_on_object($user,$all_categories[$i]['categId'],'category','tiki_p_edit_categorized') || $tikilib->user_has_perm_on_object($user,$all_categories[$i]['categId'],'category','tiki_p_admin_categories')) {
$categories[] = $all_categories[$i];
// remove category for approved pages from category list if this is a staging page
if ($prefs["feature_wikiapproval"] == 'y' && $cat_type == 'wiki page' && substr($cat_objid, 0, strlen($prefs['wikiapproval_prefix'])) == $prefs['wikiapproval_prefix']
&& $prefs['wikiapproval_approved_category'] > 0 && $prefs['wikiapproval_approved_category'] == $all_categories[$i]['categId']) {
array_pop($categories);
}
}
}
if (isset ($categories)) {
$num_categories = count($categories);
}
else {
$num_categories = 0;
};
for ($i = 0; $i < $num_categories; $i++) {
if (!empty($cats) && in_array($categories[$i]["categId"], $cats)) {
$categories[$i]["incat"] = 'y';
} else {
$categories[$i]["incat"] = 'n';
}
if (isset($_REQUEST["cat_categories"]) && isset($_REQUEST["cat_categorize"]) && $_REQUEST["cat_categorize"] == 'on') {
if (in_array($categories[$i]["categId"], $_REQUEST["cat_categories"])) {
$categories[$i]["incat"] = 'y';
// allow to preselect categories when creating a new article
// like this: /tiki-edit_article.php?cat_categories[]=1&cat_categorize=on
$smarty->assign('categ_checked', 'y');
} else {
$categories[$i]["incat"] = 'n';
}
}
}
if (!empty($cats))
$smarty->assign('catsdump', implode(',',$cats));
$smarty->assign_by_ref('categories', $categories);
// check if this page is categorized
if ($categlib->is_categorized($cat_type, $cat_objid)) {
$cat_categorize = 'y';
} else {
$cat_categorize = 'n';
}
$smarty->assign('cat_categorize', $cat_categorize);
}
?>