index.php
35 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
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
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
<?php
/**
* $Id$
*
* This is the index page for the admin
*
* Copyright (c) 1999-2002 The Owl Project Team
* Licensed under the GNU GPL. For full terms see the file COPYING.
* @version $Revision$
* @author michael
* @package Owl
*/
require("../config/owl.php");
require("../lib/owl.lib.php");
require("../config/html.php");
// action selected is to backup then doBackup function is called
if($action == "backup") {
dobackup();
}
include("../lib/header.inc");
print("<CENTER>");
// if usergroupid invalid then unauthorised view and exit
if($usergroupid != "0") {
die("$lang_err_unauthorized");
}
// if not action set ..set action to users
if(!isset($action)) {
$action = "users";
}
//-------------------------------------------------------------
/**
* Function PrintUsers
*
* Prints the users out
*
*/
//-------------------------------------------------------------
// Semi-Usable - Interface based
function printusers()
{
global $sess, $default, $lang_users;
//create a new connection
$sql = new Owl_DB;
// create a new active session
$sql_active_sess = new Owl_DB;
$sql->query("select username,name,id,maxsessions from $default->owl_users_table order by name");
/* print("<TABLE><TR><TD BGCOLOR=$default->table_header_bg>$lang_users</TD></TR>");
print("<tr><td><form method=post action=index.php?sess=$sess&action=users>");
print("<input type=hidden name=sess value=$sess>");
print("<input type=hidden name=action value=users>");
print("<tr><td><select name=owluser>");
while($sql->next_record()) {
$uid = $sql->f("id");
$username = $sql->f("username");
$name = $sql->f("name");
$maxsess = $sql->f("maxsessions") + 1;
$numrows = 0;
$sql_active_sess->query("select * from $default->owl_sessions_table where uid = $uid");
$sql_active_sess->next_record();
$numrows = $sql_active_sess->num_rows($sql_active_sess);
if ($name == "")
print("<option value=".$uid.">".$username."</option>");
else
if ($uid == $owluser)
print("<option value=".$uid." SELECTED>(".$numrows."/".$maxsess.") ".$name."</option>");
else
print("<option value=".$uid." >(".$numrows."/".$maxsess.") ".$name."</option>");
}
print("</select><input type=submit value=Go></td></tr></table>"); */
print("<TABLE BORDER=$default->table_border><TR><TD BGCOLOR=$default->table_header_bg>$lang_users</TD><TD BGCOLOR=$default->table_header_bg> </TD></TR>");
while($sql->next_record()) {
// loop through record getting user information
$uid = $sql->f("id");
$username = $sql->f("username");
$name = $sql->f("name");
$maxsess = $sql->f("maxsessions") + 1;
$numrows = 0;
// find active sessions
$sql_active_sess->query("select * from $default->owl_sessions_table where uid = $uid");
$sql_active_sess->next_record();
$numrows = $sql_active_sess->num_rows($sql_active_sess);
// print out information ->not usable
if ($name == "")
print("<TR><TD align=left><A HREF='index.php?sess=$sess&action=users&owluser=".$uid."'>".$username."</A></TD>");
else
print("<TR><TD align=left><A HREF='index.php?sess=$sess&action=users&owluser=".$uid."'>".$name."</A></TD>");
print("<TD align='right'>(".$numrows."/".$maxsess.")</TD></TR>");
}
print("</TABLE>");
}
//-------------------------------------------------------------
/**
* Function PrintGroups
*
* Prints the Groups out
*
*/
//-------------------------------------------------------------
// Semi-Usable -> Interface Based
function printgroups()
{// print out all groups
global $sess, $lang_groups, $default;
$sql = new Owl_DB;
$sql->query("select name,id from $default->owl_groups_table order by name");
print("<TABLE BORDER=$default->table_border><TR><TD BGCOLOR=$default->table_header_bg>$lang_groups</TD></TR>");
while($sql->next_record())
{
print("<TR><TD align=left><A HREF='index.php?sess=$sess&action=groups&group=".$sql->f("id")."'>".$sql->f("name")."</A></TD></TR>");
}
print("</TABLE>");
}
//-------------------------------------------------------------
/**
* Function PrintUsr($id)
*
* Prints the User out
*
* @param $id
* The Id of the user who's info is to be printed
*
*/
//-------------------------------------------------------------
// Semi-Usable -> Interface Based
function printuser($id)
{ //declare globals
global $sess,$change,$lang_saved,$lang_title,$lang_group,$lang_username,$lang_password,$lang_change,$lang_quota,$lang_groupmember,$lang_noprefaccess,$lang_disableuser, $lang_userlang, $lang_maxsessions, $lang_attach_file;
global $lang_flush_sessions_alt, $lang_flushed, $lang_deleteuser, $lang_email, $lang_notification, $default, $flush;
if($change == 1)
{
print("$lang_saved<BR>");
}
if ($flush == 1)
{
flushsessions($id, $sess);
print($lang_flushed);
}
$sql = new Owl_DB;
$sql->query("select id,name from $default->owl_groups_table order by name");
$i=0;
// store groups in array
while($sql->next_record())
{
$groups[$i][0] = $sql->f("id");
$groups[$i][1] = $sql->f("name");
$i++;
}
$sql->query("select * from $default->owl_users_table where id = '$id'");
//post to dbmodify any changes and their values
while($sql->next_record())
{
print("<FORM ACTION='admin_dbmodify.php' METHOD=POST>");
print("<INPUT TYPE=HIDDEN NAME=id VALUE=".$sql->f("id").">");
print("<INPUT TYPE=HIDDEN NAME=sess VALUE=$sess>");
print("<INPUT TYPE=HIDDEN name=action VALUE=user>");
print("<TABLE BORDER=$default->table_border><TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_title</TD><TD align=left><INPUT TYPE=text NAME=name VALUE='".$sql->f("name")."'></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_group</TD><TD align=left><SELECT NAME=groupid>");
print("<OPTION VALUE=".$sql->f("groupid").">".group_to_name($sql->f("groupid")));
foreach($groups as $g)
{
print("<OPTION VALUE=$g[0]>$g[1]");
}
print("</SELECT></TD></TR>");
//*******************************
// Display the Language dropdown
//*******************************
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_userlang</TD><TD align=left><SELECT NAME=newlanguage>");
print("<OPTION VALUE=".$sql->f("language").">".$sql->f("language"));
$dir = dir($default->owl_LangDir);
$dir->rewind();
while($file=$dir->read())
{
if ($file != "." and $file != "..")
print("<OPTION VALUE=$file>$file");
}
$dir->close();
print("</SELECT></TD></TR>");
// Bozz Change begin
//This is to allow a user to be part of more than one group
// assign a user to more than one group
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_groupmember</TD><TD align=left>");
$i=0;
$sqlmemgroup = new Owl_DB;
foreach($groups as $g)
{
$is_set_gid = $g[0];
$sqlmemgroup->query("select userid from $default->owl_users_grpmem_table where userid = '$id' and groupid = '$is_set_gid'");
$sqlmemgroup->next_record();
if ($sqlmemgroup->num_rows($sqlmemgroup) > 0)
{
print("<input type='checkbox' name='group$i' value=$g[0] checked>$g[1]<BR>");
}
else
{
print("<input type='checkbox' name='group$i' value=$g[0]>$g[1]<BR>");
}
$i++;
}
// This hidden field is to store the nubmer of displayed groups for future use
// when the records are saved to the db
print("<INPUT TYPE=HIDDEN NAME=no_groups_displayed VALUE=$i>");
// Bozz Change End
print("<TR><TD BGCOLOR=$default->table_header_bg ALIGN=RIGHT>$lang_username</TD><TD align=left><INPUT TYPE=TEXT NAME=loginname VALUE='".$sql->f("username")."'></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_quota</TD><TD align=left>".$sql->f("quota_current")." / <INPUT TYPE=TEXT NAME=quota VALUE=".$sql->f("quota_max")."></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_maxsessions</TD><TD align=left>".($sql->f("maxsessions") + 1)." / <INPUT TYPE=TEXT NAME=maxsessions VALUE=".($sql->f("maxsessions") + 1).">
<a href=\"index.php?sess=$sess&action=user&owluser=$id&change=0&flush=1\"><IMG SRC='$default->owl_root_url/graphics/admin_flush.gif' BORDER=0 ALT='$lang_flush_sessions_alt' TITLE='$lang_flush_sessions_alt'></a></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_password</TD><TD align=left><INPUT TYPE=PASSWORD NAME=password VALUE='".$sql->f("password")."'></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_email</TD><TD align=left><INPUT TYPE=TEXT NAME=email VALUE='".$sql->f("email")."'></TD></TR>");
// if notify is on ..set its value to checked
if ( $sql->f("notify") == 1)
{
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_notification</TD><TD align=left><INPUT TYPE=CHECKBOX NAME=notify VALUE=1 checked></TD></TR>");
}
else
{
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_notification</TD><TD align=left><INPUT TYPE=CHECKBOX NAME=notify VALUE=1></TD></TR>");
}
// if attachfile is on ..set its value to checked
if ( $sql->f("attachfile") == 1)
{
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_attach_file</TD><TD align=left><INPUT TYPE=CHECKBOX NAME=attachfile VALUE=1 checked></TD></TR>");
}
else
{
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_attach_file</TD><TD align=left><INPUT TYPE=CHECKBOX NAME=attachfile VALUE=1></TD></TR>");
}
if ($id != 1)
{
// if disabled is on ..set its value to checked
if ( $sql->f("disabled") == 1)
{
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_disableuser</TD><TD align=left><INPUT TYPE=CHECKBOX NAME=disabled VALUE=1 checked></TD></TR>");
}
else
{
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_disableuser</TD><TD align=left><INPUT TYPE=CHECKBOX NAME=disabled VALUE=1></TD></TR>");
}
// if noprefaccess is on ..set its value to checked
if ( $sql->f("noprefaccess") == 1)
{
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_noprefaccess</TD><TD align=left><INPUT TYPE=CHECKBOX NAME=noprefaccess VALUE=1 checked></TD></TR>");
}
else
{
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_noprefaccess</TD><TD align=left><INPUT TYPE=CHECKBOX NAME=noprefaccess VALUE=1></TD></TR>");
}
}
print("</TABLE><BR><INPUT TYPE=SUBMIT VALUE=$lang_change>");
// delete user if id != 1
if ($sql->f("id") != 1)
{
print("<INPUT TYPE=SUBMIT NAME=action VALUE='$lang_deleteuser'>");
}
print("</FORM>");
}
}
//-------------------------------------------------------------
/**
* Function flushsessions($id, $sess)
*
* Flushes the session variable form the db
*
* @param $id
* The Id of the user
* @param $sess
* The session variable
*/
//-------------------------------------------------------------
// Usable
function flushsessions($id, $sess)
{
global $default;
$sql= new Owl_DB;
$sql->query("delete from $default->owl_sessions_table where uid='$id' AND sessid!='$sess'");
}
//-------------------------------------------------------------
/**
* Function printgroup($id)
*
* Prints out the group
*
* @param $id
* The Id of the user
*
*/
//-------------------------------------------------------------
// Semi-Usable -> interface based
function printgroup($id)
{
global $sess,$change,$lang_title,$lang_change,$lang_deletegroup,$lang_saved,$default;
if(isset($change))
{
print("$lang_saved<BR>");
}
$sql = new Owl_DB;
$sql->query("select id,name from $default->owl_groups_table where id = '$id'");
// post to dbmodify with several values
while($sql->next_record())
{
print("<FORM ACTION='admin_dbmodify.php' METHOD=POST>");
print("<INPUT TYPE=HIDDEN NAME=id VALUE=".$sql->f("id").">");
print("<INPUT TYPE=HIDDEN NAME=sess VALUE=$sess>");
print("<INPUT TYPE=HIDDEN name=action VALUE=group>");
print("<TABLE BORDER=$default->table_border><TR><TD BGCOLOR=$default->table_header_bg>$lang_title</TD><TD><INPUT TYPE=text NAME=name VALUE='".$sql->f("name")."'></TD></TR></TABLE>");
print("<BR><INPUT TYPE=SUBMIT VALUE=$lang_change>");
// delete the group
if($sql->f("id") != 0)
{
print("<INPUT TYPE=SUBMIT NAME=action VALUE='$lang_deletegroup'>");
}
print("</FORM>");
}
}
//-------------------------------------------------------------
/**
* Function printnewgroup()
*
* Prints out a new group
*
*/
//-------------------------------------------------------------
// NOT Usable
function printnewgroup()
{
global $default, $sess,$lang_title,$lang_add;
print("<FORM ACTION='admin_dbmodify.php' METHOD=post>");
print("<INPUT TYPE=HIDDEN NAME=action VALUE=add>");
print("<INPUT TYPE=HIDDEN NAME=type VALUE=group>");
print("<INPUT TYPE=HIDDEN NAME=sess VALUE=$sess>");
print("<TABLE BORDER=$default->table_border><TR><TD BGCOLOR=$default->table_header_bg>$lang_title</TD><TD><INPUT TYPE=TEXT NAME=name></TD></TR></TABLE><BR><INPUT TYPE=SUBMIT VALUE=$lang_add></FORM>");
}
//-------------------------------------------------------------
/**
* Function printnewuserr()
*
* Prints out a new user
*
*/
//-------------------------------------------------------------
// Semi-Usable
function printnewuser() {
global $sess,$lang_title,$lang_username,$lang_group,$lang_password,$lang_add,$default, $lang_quota,$lang_groupmember;
global $lang_email, $lang_notification, $lang_noprefaccess, $lang_disableuser, $lang_userlang, $lang_maxsessions, $lang_attach_file;
$sql = new Owl_DB;
$sql->query("select id,name from $default->owl_groups_table order by name");
$i=0;
// get all groups
while($sql->next_record())
{
$groups[$i][0] = $sql->f("id");
$groups[$i][1] = $sql->f("name");
$i++;
}
print("<FORM ACTION='admin_dbmodify.php' METHOD=post>");
print("<INPUT TYPE=HIDDEN NAME=action VALUE=add>");
print("<INPUT TYPE=HIDDEN NAME=type VALUE=user>");
print("<INPUT TYPE=HIDDEN NAME=sess VALUE=$sess>");
print("<TABLE BORDER=$default->table_border><TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_title</TD><TD align=left><INPUT TYPE=TEXT NAME=name></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_username</TD><TD align=left><INPUT TYPE=TEXT NAME=loginname></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_group</TD><TD align=left><SELECT NAME=groupid>");
foreach($groups as $g)
{
print("<OPTION VALUE=$g[0]>$g[1]");
}
print("</SELECT></TD></TR>");
//*******************************
// Display the Language dropdown
//*******************************
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_userlang</TD><TD align=left><SELECT NAME=newlanguage>");
$dir = dir($default->owl_LangDir);
$dir->rewind();
while($file=$dir->read())
{
if ($file != "." and $file != "..")
{
//janu's change BEGIN
print("<OPTION VALUE=$file");
if ($file == $default->owl_lang)
print (" SELECTED");
print(">$file");
//janu's change END
}
}
$dir->close();
print("</SELECT></TD></TR>");
// Bozz Change begin
//This is to allow a user to be part of more than one group
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_groupmember</TD><TD align=left>");
$i=0;
foreach($groups as $g)
{
print("<input type='checkbox' name='group$i' value=$g[0]>$g[1]<BR>");
$i++;
}
// This hidden field is to store the nubmer of displayed groups for future use
// when the records are saved to the db
print("<INPUT TYPE=HIDDEN NAME=no_groups_displayed VALUE=$i>");
// Bozz Change End
print("</TD></TR><TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_quota</TD><TD align=left><INPUT TYPE=TEXT NAME=quota VALUE=0></TD></TR>");
print("</TD></TR><TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_maxsessions</TD><TD align=left><INPUT TYPE=TEXT NAME=maxsessions VALUE=1></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_password</TD><TD align=left><INPUT TYPE=PASSWORD NAME=password></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_email</TD><TD align=left><INPUT TYPE=TEXT NAME=email></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_attach_file</TD><TD align=left><INPUT TYPE=CHECKBOX NAME=attachfile VALUE=1></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_disableuser</TD><TD align=left><INPUT TYPE=CHECKBOX NAME=disabled VALUE=1></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_noprefaccess</TD><TD align=left><INPUT TYPE=CHECKBOX NAME=noprefaccess VALUE=1></TD></TR>");
print("</TABLE><BR><INPUT TYPE=SUBMIT VALUE=$lang_add></FORM>");
}
//-------------------------------------------------------------
/**
* Function printHTML()
*
* Prints out the required HTML
*
*/
//-------------------------------------------------------------
// NOT Usable
function printhtml() {
global $default, $sess, $lang_add, $lang_change, $change, $lang_saved;
global $lang_ht_tbl_border_sz, $lang_ht_tbl_hd_bg, $lang_ht_tbl_cell_bg_cl, $lang_ht_tbl_cell_bg_al, $lang_ht_tbl_bg_cl, $lang_ht_expand_width, $lang_ht_collapse_width, $lang_ht_bd_bg_cl, $lang_ht_bd_txt_cl, $lang_ht_bd_lnk_cl, $lang_ht_bd_vlnk_cl, $lang_ht_bd_width;
if(isset($change)) print("$lang_saved<BR>");
print("<FORM ACTION='admin_dbmodify.php' METHOD=post>");
print("<INPUT TYPE=HIDDEN NAME=action VALUE=edhtml>");
print("<INPUT TYPE=HIDDEN NAME=type VALUE=html>");
print("<INPUT TYPE=HIDDEN NAME=sess VALUE=$sess>");
print("<TABLE BORDER=$default->table_border>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_ht_tbl_border_sz</TD>
<TD align=left><INPUT TYPE=TEXT NAME=border VALUE='$default->table_border'></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_ht_tbl_hd_bg</TD>
<TD align=left><INPUT TYPE=TEXT NAME=header_bg VALUE=$default->table_header_bg></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_ht_tbl_cell_bg_cl</TD>
<TD align=left><INPUT TYPE=TEXT NAME=cell_bg VALUE='$default->table_cell_bg'></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_ht_tbl_cell_bg_al</TD>
<TD align=left><INPUT TYPE=TEXT NAME=cell_bg_alt VALUE='$default->table_cell_bg_alt'></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_ht_expand_width</TD>
<TD align=left><INPUT TYPE=TEXT NAME=expand_width VALUE='$default->table_expand_width'></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_ht_collapse_width</TD>
<TD align=left><INPUT TYPE=TEXT NAME=collapse_width VALUE='$default->table_collapse_width'></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>Main Header Background Color</TD>
<TD align=left><INPUT TYPE=TEXT NAME=main_header_bgcolor VALUE='$default->main_header_bgcolor'></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_ht_bd_bg_cl</TD>
<TD align=left><INPUT TYPE=TEXT NAME=body_bgcolor VALUE='$default->body_bgcolor'></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_ht_bd_txt_cl</TD>
<TD align=left><INPUT TYPE=TEXT NAME=body_textcolor VALUE='$default->body_textcolor'></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_ht_bd_lnk_cl</TD>
<TD align=left><INPUT TYPE=TEXT NAME=body_link VALUE='$default->body_link'></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_ht_bd_vlnk_cl</TD>
<TD align=left><INPUT TYPE=TEXT NAME=body_vlink VALUE='$default->body_vlink'></TD></TR>");
print("</TABLE><BR><INPUT TYPE=SUBMIT VALUE=$lang_change></FORM>");
}
//-------------------------------------------------------------
/**
* Function printPrefs()
*
* Prints out the preferences in a specific format
*
*/
//-------------------------------------------------------------
// NOT Usable
function printprefs() {
global $default, $sess, $lang_add, $lang_change, $change, $lang_saved;
global $lang_owl_title_email, $lang_owl_email_from, $lang_owl_email_fromname, $lang_owl_email_replyto , $lang_owl_email_server, $lang_owl_title_HD, $lang_owl_lookAtHD, $lang_owl_def_file_security, $lang_owl_def_file_group_owner, $lang_owl_def_file_owner, $lang_owl_def_file_title, $lang_owl_def_file_meta , $lang_owl_def_fold_sec, $lang_owl_def_fold_group_owner, $lang_owl_def_fold_owner, $lang_owl_title_other, $lang_owl_max_filesize, $lang_owl_owl_timeout, $lang_owl_owl_expand, $lang_owl_version_control, $lang_owl_restrict_view ;
global $lang_owl_title_tools, $lang_owl_dbdump_path,$lang_owl_gzip_path, $lang_owl_tar_path;
if(isset($change)) print("$lang_saved<BR>");
print("<FORM ACTION='admin_dbmodify.php' METHOD=post>");
print("<INPUT TYPE=HIDDEN NAME=action VALUE=edprefs>");
print("<INPUT TYPE=HIDDEN NAME=type VALUE=html>");
print("<INPUT TYPE=HIDDEN NAME=sess VALUE=$sess>");
print("<TABLE BORDER=$default->table_border>");
print("<TR><TD BGCOLOR=$default->main_header_bgcolor align=CENTER colspan=2>$lang_owl_title_email</TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_owl_email_from</TD>
<TD align=left><INPUT TYPE=TEXT NAME=email_from VALUE='$default->owl_email_from' size=30></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_owl_email_fromname</TD>
<TD align=left><INPUT TYPE=TEXT NAME=email_fromname VALUE='$default->owl_email_fromname' size=30></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_owl_email_replyto</TD>
<TD align=left><INPUT TYPE=TEXT NAME=email_replyto VALUE='$default->owl_email_replyto' size=30></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_owl_email_server</TD>
<TD align=left><INPUT TYPE=TEXT NAME=email_server VALUE='$default->owl_email_server' size=30></TD></TR>");
print("<TR><TD BGCOLOR=$default->main_header_bgcolor align=CENTER colspan=2>$lang_owl_title_HD</TD></TR>");
if ( $default->owl_LookAtHD == "false" )
{
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_owl_lookAtHD</TD><TD align=left><INPUT TYPE=CHECKBOX NAME=lookAtHD VALUE='false' checked></TD></TR>");
print("<INPUT TYPE=HIDDEN NAME=def_file_security VALUE='$default->owl_def_file_security'>");
print("<INPUT TYPE=HIDDEN NAME=def_file_group_owner VALUE='$default->owl_def_file_group_owner'>");
print("<INPUT TYPE=HIDDEN NAME=def_file_owner VALUE='$default->owl_def_file_owner'>");
print("<INPUT TYPE=HIDDEN NAME=def_file_title VALUE='$default->owl_def_file_title'>");
print("<INPUT TYPE=HIDDEN NAME=def_file_meta VALUE='$default->owl_def_file_meta'>");
print("<INPUT TYPE=HIDDEN NAME=def_fold_security VALUE='$default->owl_def_fold_security'>");
print("<INPUT TYPE=HIDDEN NAME=def_fold_group_owner VALUE='$default->owl_def_fold_group_owner'>");
print("<INPUT TYPE=HIDDEN NAME=def_fold_owner VALUE='$default->owl_def_fold_owner'>");
}
else
{
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_owl_lookAtHD</TD><TD align=left><INPUT TYPE=CHECKBOX NAME=lookAtHD VALUE='false'></TD></TR>");
printfileperm($default->owl_def_file_security, "def_file_security", $lang_owl_def_file_security, "user");
$sql = new Owl_DB;
$sql->query("select id,name from $default->owl_groups_table");
$i=0;
// get all groups
while($sql->next_record())
{
$groups[$i][0] = $sql->f("id");
$groups[$i][1] = $sql->f("name");
$i++;
}
print("<TR><TD ALIGN=RIGHT BGCOLOR=$default->table_header_bg>$lang_owl_def_file_group_owner</TD><TD align=left><SELECT NAME=def_file_group_owner>");
// loop through all groups
foreach($groups as $g)
{
print("<OPTION VALUE=$g[0] ");
if($g[0] == $default->owl_def_file_group_owner)
print("SELECTED");
print(">$g[1]");
}
print("</SELECT></TD></TR>");
$sql = new Owl_DB;
$sql->query("select id,name from $default->owl_users_table");
$i=0;
// get all users
while($sql->next_record())
{
$users[$i][0] = $sql->f("id");
$users[$i][1] = $sql->f("name");
$i++;
}
print("<TR><TD ALIGN=RIGHT BGCOLOR=$default->table_header_bg>$lang_owl_def_file_owner</TD><TD align=left><SELECT NAME=def_file_owner>");
// loop through users
foreach($users as $g)
{
print("<OPTION VALUE=$g[0] ");
if($g[0] == $default->owl_def_file_owner)
print("SELECTED");
print(">$g[1]");
}
print("</SELECT></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_owl_def_file_title</TD>
<TD align=left><INPUT TYPE=TEXT NAME=def_file_title VALUE='$default->owl_def_file_title' size=40></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_owl_def_file_meta</TD>
<TD align=left><INPUT TYPE=TEXT NAME=def_file_meta VALUE='$default->owl_def_file_meta' size=40></TD></TR>");
printgroupperm($default->owl_def_fold_security, "def_fold_security", $lang_owl_def_fold_sec, "user");
print("<TR><TD ALIGN=RIGHT BGCOLOR=$default->table_header_bg>$lang_owl_def_fold_group_owner</TD><TD align=left><SELECT NAME=def_fold_group_owner>");
foreach($groups as $g)
{
print("<OPTION VALUE=$g[0] ");
if($g[0] == $default->owl_def_fold_group_owner)
print("SELECTED");
print(">$g[1]");
}
print("</SELECT></TD></TR>");
print("<TR><TD ALIGN=RIGHT BGCOLOR=$default->table_header_bg>$lang_owl_def_fold_owner</TD><TD align=left><SELECT NAME=def_fold_owner>");
foreach($users as $g)
{
print("<OPTION VALUE=$g[0] ");
if($g[0] == $default->owl_def_fold_owner)
print("SELECTED");
print(">$g[1]");
}
print("</SELECT></TD></TR>");
}
print("<TR><TD BGCOLOR=$default->main_header_bgcolor align=CENTER colspan=2>$lang_owl_title_other</TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_owl_max_filesize</TD>
<TD align=left><INPUT TYPE=TEXT NAME=max_filesize VALUE='$default->max_filesize'></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_owl_owl_timeout</TD>
<TD align=left><INPUT TYPE=TEXT NAME=owl_timeout VALUE='$default->owl_timeout'></TD></TR>");
//if expansion is true
if ( $default->expand == 1 )
{
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_owl_owl_expand</TD><TD align=left><INPUT TYPE=CHECKBOX NAME=owl_expand VALUE=1 checked></TD></TR>");
}
else
{
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_owl_owl_expand:</TD><TD align=left><INPUT TYPE=CHECKBOX NAME=owl_expand VALUE=1></TD></TR>");
}
// if version control checked
if ( $default->owl_version_control == 1 )
{
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_owl_version_control</TD><TD align=left><INPUT TYPE=CHECKBOX NAME=version_control VALUE=1 checked></TD></TR>");
}
else
{
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_owl_version_control</TD><TD align=left><INPUT TYPE=CHECKBOX NAME=version_control VALUE=1></TD></TR>");
}
// restrict view checked if true
if ( $default->restrict_view == 1 )
{
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_owl_restrict_view</TD><TD align=left><INPUT TYPE=CHECKBOX NAME=restrict_view VALUE=1 checked></TD></TR>");
}
else
{ print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_owl_restrict_view</TD><TD align=left><INPUT TYPE=CHECKBOX NAME=restrict_view VALUE=1></TD></TR>");
}
print("<TR><TD BGCOLOR=$default->main_header_bgcolor align=CENTER colspan=2>$lang_owl_title_tools</TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_owl_dbdump_path</TD>
<TD align=left><INPUT TYPE=TEXT NAME=dbdump_path VALUE='$default->dbdump_path' size=30></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_owl_gzip_path</TD>
<TD align=left><INPUT TYPE=TEXT NAME=gzip_path VALUE='$default->gzip_path' size=30></TD></TR>");
print("<TR><TD BGCOLOR=$default->table_header_bg align=right>$lang_owl_tar_path</TD>
<TD align=left><INPUT TYPE=TEXT NAME=tar_path VALUE='$default->tar_path' size=30></TD></TR>");
print("</TABLE><BR><INPUT TYPE=SUBMIT VALUE=$lang_change></FORM>");
}
//-------------------------------------------------------------
/**
* Function DoBackup()
*
* Does a backup by zipping relevant data
*
*/
//-------------------------------------------------------------
// NOT Usable
function dobackup() {
global $default;
$command = $default->dbdump_path . " --opt --host=" . $default->owl_db_host . " --user=" . $default->owl_db_user . " --password=" . $default->owl_db_pass . " " . $default->owl_db_name . " | " . $default->gzip_path . " -fc";
$date = date("Ymd.Hms");
header("Content-Disposition: attachment; filename=\"" . $default->owl_db_name . "-$date.sql.gz\"");
header("Content-Location: " . $default->owl_db_name . "-$date.sql.gz");
header("Content-Type: application/octet-stream");
//header("Content-Length: $fsize");
//header("Pragma: no-cache");
header("Expires: 0");
passthru($command);
exit();
}
// if action has been selected..do it..
if($action) {
print("<TABLE WIDTH=$default->table_expand_width BGCOLOR=$default->main_header_bgcolor CELLSPACING=0 CELLPADDING=0 BORDER=$default->table_border HEIGHT=30>");
print("<TR><TD WIDTH=200 VALIGN=TOP>");
print("<TR>");
print("<TD ALIGN=LEFT WIDTH=33%>");
print uid_to_name($userid);
print(" : <A HREF='../index.php?login=logout&sess=$sess'>$lang_logout</A></TD>");
print("<TD ALIGN=CENTER WIDTH=33%> $lang_owl_admin</TD>");
print("<TD ALIGN=RIGHT WIDTH=33%> <A HREF='../browse.php?sess=$sess'><IMG SRC='$default->owl_root_url/locale/$language/graphics/btn_browse.gif' BORDER=0></A> </TD>");
print("</TR>");
print("</TABLE>");
print("<HR WIDTH=$default->table_expand_width><BR>");
print("<TABLE WIDTH=$default->table_expand_width BORDER=$default->table_border><TR><TD WIDTH=200 VALIGN=TOP>");
print("<TABLE BORDER=$default->table_border><TR><TD align=left>");
print("<A HREF='index.php?sess=$sess&action=newuser'><IMG SRC='$default->owl_root_url/graphics/admin_users.gif' BORDER=0 ALT='$lang_newuser_alt' TITLE='$lang_newuser_alt'></A><BR>");
print("<A HREF='index.php?sess=$sess&action=newgroup'><IMG SRC='$default->owl_root_url/graphics/admin_groups.gif' BORDER=0 ALT='$lang_newgroup_alt' TITLE='$lang_newgroup_alt'></A><BR>");
print("<A HREF='index.php?sess=$sess&action=edhtml'><IMG SRC='$default->owl_root_url/graphics/admin_html_prefs.gif' BORDER=0 ALT='$lang_edthtml_alt' TITLE='$lang_edthtml_alt'></A><BR>");
print("<A HREF='index.php?sess=$sess&action=edprefs'><IMG SRC='$default->owl_root_url/graphics/admin_site_prefs.gif' BORDER=0 ALT='$lang_edprefs_alt' TITLE='$lang_edprefs_alt'></A><BR>");
if (file_exists($default->dbdump_path) && file_exists($default->gzip_path))
{
print("<A HREF='index.php?sess=$sess&action=backup'><IMG SRC='$default->owl_root_url/graphics/admin_backup.gif' BORDER=0 ALT='$lang_backup_alt' TITLE='$lang_backup_alt'></A><BR><BR>");
}
else {
print("<IMG SRC='$default->owl_root_url/graphics/admin_backup_disabled.gif' BORDER=0 ALT='$lang_backup_dis_alt' TITLE='$lang_backup_dis_alt'></A><BR><BR>");
}
// print("<A HREF='upgrade-users.php?sess=$sess'>$lang_upg_MD5</A><BR><BR>");
printusers();
print("<BR><BR>");
printgroups();
print("</TD></TR></TABLE>");
print("</TD><TD VALIGN=TOP>");
// if user action selected..print user
if(isset($owluser))
{
printuser($owluser);
}
//if group action selected print group
if(isset($group))
{
printgroup($group);
}
// if newgroup action slelected print the new group
if($action == "newgroup")
{
printnewgroup();
}
// if the newuser action print the new user
if($action == "newuser")
{
printnewuser();
}
//if the edit html action has been selected run the printHTML
if($action == "edhtml")
{
printhtml();
}
// if edit preferences selected print the preferences
if($action == "edprefs")
{
printprefs();
}
print("</TD></TR></TABLE>");
}
else
{
exit("$lang_err_general");
}
print("<BR><HR WIDTH=$default->table_expand_width><BR><A HREF='../browse.php?sess=$sess'><IMG SRC='$default->owl_root_url/locale/$language/graphics/btn_browse.gif' BORDER=0></A>");
?>
<!-- BEGIN BUG FIX: #448241 HTML-Syntax-Error in admin/index.php -->
</BODY>
</HTML>
<!-- BEGIN BUG FIX: #448241 HTML-Syntax-Error in admin/index.php -->