forked from craigk5n/webcalendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategory.php
176 lines (164 loc) · 6.2 KB
/
category.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
<?php // $Id: category.php,v 1.50.2.1 2013/01/24 21:15:08 cknudsen Exp $
include_once 'includes/init.php';
// Load user and global cats.
load_user_categories();
if ( $CATEGORIES_ENABLED == 'N' ) {
send_to_preferred_view();
exit;
}
// Verify that permissions allow writing to the "icons" directory.
$canWrite = false;
$permError = false;
if ( $ENABLE_ICON_UPLOADS == 'Y' || $is_admin ) {
$testFile = "icons/testWrite.txt";
$testFd = @fopen ( $testFile, "w+b", false );
@fclose ( $testFd );
$canWrite = file_exists ( $testFile );
if ( ! $canWrite ) {
$permError = true;
} else {
@unlink ( $testFile );
}
}
$catIcon = $catname = $error = $idStr = '';
$catIconStr = translate ( 'Category Icon' );
$globalStr = translate ( 'Global' );
$icon_path = 'icons/';
// If editing, make sure they are editing their own (or they are an admin user).
if ( ! empty ( $id ) ) {
if ( empty ( $categories[$id] ) )
$error =
str_replace ( 'XXX', $id, translate ( 'Invalid entry id XXX.' ) );
$catcolor = $categories[$id]['cat_color'];
$catname = $categories[$id]['cat_name'];
$catowner = $categories[$id]['cat_owner'];
$catIcon = $icon_path . 'cat-' . $id . '.gif';
// Try PNG if GIF not found
if ( ! file_exists ( $catIcon ) )
$catIcon = $icon_path . 'cat-' . $id . '.png';
$idStr = '<input name="id" type="hidden" value="' . $id . '" />';
} else
$catcolor = '#000000';
$showIconStyle = ( ! empty ( $catIcon ) && file_exists ( $catIcon )
? '' : 'display: none;' );
print_header ( array ( 'js/visible.php' ) );
echo '
<h2>' . translate ( 'Categories' ) . '</h2>
' . display_admin_link( false );
// Display permission error if found above.
if ( $permError && $is_admin ) {
print_error_box (
translate('The permissions for the icons directory are set to read-only') );
}
$add = getGetValue ( 'add' );
if ( empty ( $add ) )
$add = 0;
// Adding/Editing category.
if ( ( ( $add == '1' ) || ( ! empty ( $id ) ) ) && empty ( $error ) ) {
echo '
<form action="category_handler.php" method="post" name="catform" '
. 'enctype="multipart/form-data">' . $idStr . '
<table cellspacing="2" cellpadding="3">
<tr>
<td width="25%"><label for="catname">' . translate ( 'Category Name' )
. '</label></td>
<td colspan="3"><input type="text" name="catname" size="20" value="'
. htmlspecialchars ( $catname ) . '" /></td>
</tr>' . ( $is_admin && empty ( $id ) ? '
<tr>
<td><label for="isglobal">' . $globalStr . ':</label></td>
<td colspan="3">
<label><input type="radio" name="isglobal" value="N" '
. ( ! empty ( $catowner ) || empty ( $id ) ? ' checked = "checked"' : '' )
. ' /> ' . translate ( 'No' ) . '</label>
<label><input type="radio" name="isglobal" value="Y" '
. ( empty ( $catowner ) && ! empty ( $id ) ? ' checked = "checked"' : '' )
. ' /> ' . translate ( 'Yes' ) . '</label>
</td>
</tr>' : '' ) . '
<tr>
<td>'
. print_color_input_html ( 'catcolor', translate ( 'Color' ), $catcolor )
. '</td>
</tr>
<tr id="cat_icon" style="' . $showIconStyle . '">
<td><label>' . $catIconStr . ':</label></td>
<td colspan="3"><img src="' . $catIcon
. '" name="urlpic" id="urlpic" alt="' . $catIconStr . '" /></td>
</tr>
<tr id="remove_icon" style="' . $showIconStyle . '">
<td><label for="delIcon">' . translate ( 'Remove Icon' )
. '</label></td>
<td colspan="3"><input type="checkbox" name="delIcon" value="Y" /></td>
</tr>
<tr>
<td colspan="4">
<label for="FileName">' . ( is_dir ( $icon_path ) &&
( ( $ENABLE_ICON_UPLOADS == 'Y' || $is_admin ) && $canWrite )
? translate ( 'Add Icon to Category' ) . '</label><br /> '
. translate ( 'Upload' ) . ' <span style="font-size:small;">'
. translate ( 'GIF or PNG 6kb max' ) . '</span>:
<input type="file" name="FileName" id="fileupload" size="45" '
. 'maxlength="50" value=""/>
</td>
</tr>
</tr>
<td colspan="4">
<input type="hidden" name="urlname" size="50" />
<input type="button" value="'
. translate ( 'Search for existing icons' )
. '" onclick="window.open( \'icons.php\', \'icons\',\''
. 'dependent,menubar=no,scrollbars=n0,height=300,width=400,outerHeight=320'
. ',outerWidth=420\' );" />
</td>
</tr>
</tr>
<td colspan="4">' : '' ) // end test of ENABLE_ICON_UPLOADS
. '
<input type="submit" name="action" value="'
. ( $add == '1' ? translate ( 'Add' ) : translate ( 'Save' ) ) . '" />'
. ( ! empty ( $id ) ? '
<input type="submit" name="delete" value="'
. translate ( 'Delete' ) . '" onclick="return confirm( '
. translate( 'Are you sure you want to delete this entry?', true )
. '\' )" />' : '' ) . '
</td>
</tr>
</table>
</form>';
} else
if ( empty ( $error ) ) {
// Displaying Categories.
$global_found = false;
if ( ! empty ( $categories ) ) {
echo '
<ul>';
foreach ( $categories as $K => $V ) {
if ( $K < 1 )
continue;
$catIcon = $icon_path . 'cat-' . $K . '.gif';
if ( ! file_exists ( $catIcon ) )
$catIcon = $icon_path . 'cat-' . $K . '.png';
$catStr = '<span style="color: '
. ( ! empty ( $V['cat_color'] ) ? $V['cat_color'] : '#000000' )
. ';">' . htmlentities ( $V['cat_name'] ) . '</span>';
echo '
<li>' . ( $V['cat_owner'] == $login || $is_admin
? '<a href="category.php?id=' . $K . '">' . $catStr . '</a>' : $catStr );
if ( empty ( $V['cat_owner'] ) ) {
echo '<sup>*</sup>';
$global_found = true;
}
echo ( file_exists ( $catIcon ) ? '<img src="' . $catIcon . '" alt="'
. $catIconStr . '" title="' . $catIconStr . '" />' : '' ) . '</li>';
}
echo '
</ul>';
}
echo ( $global_found ? '<br /><br />
<sup>*</sup> ' . $globalStr : '' ) . '
<p><a href="category.php?add=1">' . translate ( 'Make New Category' )
. '</a></p><br />';
}
echo ( ! empty ( $error ) ? print_error ( $error ) : '' ) . print_trailer();
?>