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
|
<?php
/**
* File locations.
* @package mirror
* @subpackage admin
*/
$protect=1; // protect this page
require_once('../cfg/init.php');
// add mirror
if (!empty($_POST['add-submit'])&&!empty($_POST['location_path'])) {
if (Mirror::insert_location($_POST['product_id'],$_POST['os_id'],$_POST['location_path'])) {
set_msg('Location added successfully.');
header('Location: http://'.$_SERVER['HTTP_HOST'].WEBPATH.'/admin/locations.php');
exit;
} else {
set_error('Location could not be added because of an unknown error.');
}
}
// process actions
if (!empty($_POST['submit'])) {
if (!empty($_POST['location_id'])) {
switch($_POST['action']) {
case 'edit':
if (!empty($_POST['doit'])) {
if (Mirror::update_location($_POST['location_id'],$_POST['product_id'],$_POST['os_id'],$_POST['location_path'])) {
set_msg('Location updated successfully.');
header('Location: http://'.$_SERVER['HTTP_HOST'].WEBPATH.'/admin/locations.php');
exit;
} else {
set_error('Location update failed.');
}
} else {
$title = 'Edit Location';
$nav = INC.'/admin_nav.php';
require_once(HEADER);
echo '<h2>Edit Location</h2>';
$posts = Mirror::get_one_location($_POST['location_id']);
form_start();
include_once(INC.'/forms/location.php');
form_hidden('doit','1');
form_hidden('action','edit');
form_hidden('location_id',$_POST['location_id']);
form_submit('submit','','button1','Update');
form_end();
require_once(FOOTER);
exit;
}
break;
case 'delete':
if (Mirror::delete_location($_POST['location_id'])) {
set_msg('Location deleted successfully.');
} else {
set_error('Location could not be deleted.');
}
break;
}
} else {
set_error('You must select a mirror to continue.');
}
}
$title = 'Locations';
$nav = INC.'/admin_nav.php';
require_once(HEADER);
echo '<h2>Locations</h2>';
show_error();
show_msg();
$locations = Mirror::get_locations();
$_GET['sort'] = (!empty($_GET['sort']))?$_GET['sort']:'product_name';
$_GET['order'] = (!empty($_GET['order']))?$_GET['order']:'ASC';
$locations = array_order_by($locations,$_GET['sort'],$_GET['order']);
$headers = array(
'location_id'=>'',
'product_name'=>'Product',
'os_name'=>'OS',
'location_path'=>'Path'
);
$actions = array(
'edit'=>'Edit',
'delete'=>'Delete'
);
form_start();
show_list($locations,$headers,'radio',$actions);
form_end();
echo '<h2>Add a Location</h2>';
form_start();
include_once(INC.'/forms/location.php');
form_submit('add-submit','','button1','Add Location');
form_end();
require_once(FOOTER);
?>
|