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
|
<?php
/**
* Products.
* @package mirror
* @subpackage admin
*/
$protect=1; // protect this page
require_once('../cfg/init.php');
// add product
if (!empty($_POST['add-submit'])&&!empty($_POST['product_name'])) {
if (Mirror::insert_product($_POST['product_name'],$_POST['product_priority'])) {
set_msg('Product added successfully.');
header('Location: http://'.$_SERVER['HTTP_HOST'].WEBPATH.'/admin/products.php');
exit;
} else {
set_error('Product could not be added because of an unknown error.');
}
}
// process actions
if (!empty($_POST['submit'])) {
if (!empty($_POST['product_id'])) {
switch($_POST['action']) {
case 'edit':
if (!empty($_POST['doit'])) {
if (Mirror::update_product($_POST['product_id'],$_POST['product_name'],$_POST['product_priority'])) {
set_msg('Product updated successfully.');
header('Location: http://'.$_SERVER['HTTP_HOST'].WEBPATH.'/admin/products.php');
exit;
} else {
set_error('Product update failed.');
}
} else {
$title = 'Edit Product';
$nav = INC.'/admin_nav.php';
require_once(HEADER);
echo '<h2>Edit Product</h2>';
$posts = Mirror::get_one_product($_POST['product_id']);
form_start();
include_once(INC.'/forms/product.php');
form_hidden('doit','1');
form_hidden('action','edit');
form_hidden('product_id',$_POST['product_id']);
form_submit('submit','','button1','Update');
form_end();
require_once(FOOTER);
exit;
}
break;
case 'delete':
if (!record_exists('mirror_locations','product_id',$_POST['product_id'])&&Mirror::delete_product($_POST['product_id'])) {
set_msg('Product deleted successfully.');
} else {
set_error('Product cannot be deleted because it is being used by a file location.');
}
break;
}
} else {
set_error('You must select a product to continue.');
}
}
$title = 'Products';
$nav = INC.'/admin_nav.php';
require_once(HEADER);
echo '<h2>Products</h1>';
show_error();
show_msg();
$products = Mirror::get_products();
$_GET['sort']=(!empty($_GET['sort']))?$_GET['sort']:'product_name';
$_GET['order']=(!empty($_GET['order']))?$_GET['order']:'ASC';
$products=array_order_by($products,$_GET['sort'],$_GET['order']);
$headers = array(
'product_id'=>'',
'product_name'=>'Product Name',
'product_priority'=>'Priority',
'product_count'=>'Downloads'
);
$actions = array(
'edit'=>'Edit',
'delete'=>'Delete'
);
form_start();
ListOut::show($products,$headers,'radio',$actions);
form_end();
echo '<h2>Add a Product</h2>';
form_start();
$posts = ['product_name'=>'', 'product_priority'=>'']; //sane defaults
include_once(INC.'/forms/product.php');
form_submit('add-submit','','button1','Add Product');
form_end();
require_once(FOOTER);
|