mirror of https://github.com/fspc/biketree.git
Bike Tree - https://biketree.bikelover.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.6 KiB
67 lines
1.6 KiB
<?php session_start(); ?>
|
|
|
|
<html>
|
|
<head>
|
|
<SCRIPT LANGUAGE="Javascript">
|
|
<!---
|
|
function decision(message, url)
|
|
{
|
|
if(confirm(message) )
|
|
{
|
|
location.href = url;
|
|
}
|
|
}
|
|
// --->
|
|
</SCRIPT>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<?php
|
|
|
|
include ("../../settings.php");
|
|
include ("../../language/$cfg_language");
|
|
include ("../../classes/db_functions.php");
|
|
include ("../../classes/security_functions.php");
|
|
include ("../../classes/display.php");
|
|
include ("../../classes/form.php");
|
|
|
|
$lang=new language();
|
|
$dbf=new db_functions($cfg_server,$cfg_username,$cfg_password,$cfg_database,$cfg_tableprefix,$cfg_theme,$lang);
|
|
$sec=new security_functions($dbf,'Admin',$lang);
|
|
|
|
if(!$sec->isLoggedIn())
|
|
{
|
|
header ("location: ../../login.php");
|
|
exit();
|
|
}
|
|
|
|
$display=new display($dbf->conn,$cfg_theme,$cfg_currency_symbol,$lang);
|
|
$display->displayTitle("$lang->manageDiscounts");
|
|
|
|
$f1=new form('manage_discounts.php','POST','discounts','475',$cfg_theme,$lang);
|
|
$f1->createInputField("<b>$lang->searchForDiscount</b>",'text','search','','24','375');
|
|
$f1->endForm();
|
|
|
|
$tableheaders=array("$lang->rowID","$lang->itemName","$lang->percentOff","$lang->comment","$lang->updateDiscount","$lang->deleteDiscount");
|
|
$tablefields=array('id','item_id','percent_off','comment');
|
|
|
|
if(isset($_POST['search']))
|
|
{
|
|
$search=$_POST['search'];
|
|
echo "<center>$lang->searchedForDiscount: <b>$search</b></center>";
|
|
$display->displayManageTable("$cfg_tableprefix",'discounts',$tableheaders,$tablefields,'percent_off',"$search",'percent_off');
|
|
}
|
|
else
|
|
{
|
|
$display->displayManageTable("$cfg_tableprefix",'discounts',$tableheaders,$tablefields,'','','percent_off');
|
|
}
|
|
|
|
|
|
|
|
$dbf->closeDBlink();
|
|
|
|
|
|
?>
|
|
</body>
|
|
</html>
|