mirror of
				https://github.com/fspc/biketree.git
				synced 2025-10-31 17:05:36 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			124 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			124 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| <?php session_start(); ?>
 | |
| 
 | |
| <html>
 | |
| <head>
 | |
| 	
 | |
| </head>
 | |
| 
 | |
| <body>
 | |
| <?php
 | |
| 
 | |
| include ("../settings.php");
 | |
| include ("../language/$cfg_language");
 | |
| include ("../classes/db_functions.php");
 | |
| include ("../classes/security_functions.php");
 | |
| 
 | |
| //creates 3 objects needed for this script.
 | |
| $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);
 | |
| 
 | |
| //checks if user is logged in.
 | |
| if(!$sec->isLoggedIn())
 | |
| {
 | |
| 	header ("location: ../login.php");
 | |
| 	exit ();
 | |
| }
 | |
| 
 | |
| //variables needed globably in this file.
 | |
| $tablename="$cfg_tableprefix".'items';
 | |
| $field_names=null;
 | |
| $field_data=null;
 | |
| $id=-1;
 | |
| 
 | |
| 
 | |
| 
 | |
| 	//checks to see if action is delete and an ID is specified. (only delete uses $_GET.)
 | |
| 	if(isset($_GET['action']) and isset($_GET['id']))
 | |
| 	{
 | |
| 		$action=$_GET['action'];
 | |
| 		$id=$_GET['id'];
 | |
| 	}
 | |
| 	//checks to make sure data is comming from form ($action is either delete or update)
 | |
| 	elseif(isset($_POST['item_name']) and isset($_POST['description']) and isset($_POST['item_number']) and isset($_POST['brand_id']) 
 | |
| 	and isset($_POST['category_id']) and isset($_POST['supplier_id']) and isset($_POST['buy_price']) and isset($_POST['unit_price']) and isset($_POST['tax_percent']) 
 | |
| 	and isset($_POST['supplier_catalogue_number']) and isset($_POST['quantity']) and isset($_POST['id']) and isset($_POST['action']) )
 | |
| 	{
 | |
| 		
 | |
| 		$action=$_POST['action'];
 | |
| 		$id = $_POST['id'];
 | |
| 		
 | |
| 		//gets variables entered by user.
 | |
| 		$item_name = $_POST['item_name'];
 | |
| 		$description = $_POST['description'];
 | |
| 		$item_number = $_POST['item_number'];
 | |
| 		$brand_id = $_POST['brand_id'];
 | |
| 		$category_id = $_POST['category_id'];
 | |
| 		$supplier_id = $_POST['supplier_id'];
 | |
| 		$buy_price = number_format($_POST['buy_price'],2,'.', '');
 | |
| 		$unit_price = number_format($_POST['unit_price'],2,'.', '');
 | |
| 		$tax_percent = $_POST['tax_percent'];
 | |
| 		$supplier_catalogue_number = $_POST['supplier_catalogue_number'];
 | |
| 		$quantity = $_POST['quantity'];
 | |
| 		$reorder_level= $_POST['reorder_level'];
 | |
| 		
 | |
| 		//insure all fields are filled in.
 | |
| 		if($item_name=='' or $brand_id=='' or $category_id=='' or $supplier_id=='' or $buy_price=='' or $unit_price=='' or $tax_percent=='' or $quantity=='' or $reorder_level=='' )
 | |
| 		{
 | |
| 			echo "$lang->forgottenFields";
 | |
| 			exit();
 | |
| 		}
 | |
| 		elseif( (!is_numeric($buy_price)) or (!is_numeric($unit_price)) or (!is_numeric($tax_percent)) or (!is_numeric($quantity))  or (!is_numeric($reorder_level)))
 | |
| 		{
 | |
| 			echo "$lang->mustEnterNumeric";
 | |
| 			exit();
 | |
| 		}
 | |
| 		else
 | |
| 		{
 | |
| 			$total_cost = number_format($unit_price*(1+($tax_percent/100)),2,'.', ''); 
 | |
| 			$field_names=array('item_name','description','item_number','brand_id','category_id','supplier_id','buy_price','unit_price','tax_percent','supplier_catalogue_number','total_cost','quantity','reorder_level');
 | |
| 			$field_data=array("$item_name","$description","$item_number","$brand_id","$category_id","$supplier_id","$buy_price","$unit_price","$tax_percent","$supplier_catalogue_number","$total_cost","$quantity","$reorder_level");	
 | |
| 	
 | |
| 		}
 | |
| 		
 | |
| 	}
 | |
| 	else
 | |
| 	{
 | |
| 		//outputs error message because user did not use form to fill out data.
 | |
| 		echo "$lang->mustUseForm";
 | |
| 		exit();
 | |
| 	}
 | |
| 	
 | |
| 
 | |
| 
 | |
| switch ($action)
 | |
| {
 | |
| 	//finds out what action needs to be taken and preforms it by calling methods from dbf class.
 | |
| 	case $action=="insert":
 | |
| 		$dbf->insert($field_names,$field_data,$tablename,true);
 | |
| 
 | |
| 	break;
 | |
| 		
 | |
| 	case $action=="update":
 | |
| 		$dbf->update($field_names,$field_data,$tablename,$id,true);
 | |
| 		
 | |
| 	break;
 | |
| 	
 | |
| 	case $action=="delete":
 | |
| 		$dbf->deleteRow($tablename,$id);
 | |
| 	
 | |
| 	break;
 | |
| 	
 | |
| 	default:
 | |
| 		echo "lang->noActionSpecified";
 | |
| 	break;
 | |
| }
 | |
| $dbf->closeDBlink();
 | |
| 
 | |
| ?>
 | |
| <br>
 | |
| <a href="manage_items.php"><?php echo $lang->manageItems ?>--></a>
 | |
| <br>
 | |
| <a href="form_items.php?action=insert"><?php echo $lang->createNewItem ?>--></a>
 | |
| </body>
 | |
| </html>
 |