27 lines
		
	
	
		
			484 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			484 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?php
 | 
						|
include_once 'config.php';
 | 
						|
include_once './models/services/BrandService.php';
 | 
						|
include_once './config.php';
 | 
						|
 | 
						|
if ( ! is_updater() )
 | 
						|
    return header('location:http://www.slowtwitch.com');
 | 
						|
 | 
						|
 | 
						|
if($_SERVER['REQUEST_METHOD']=='POST')
 | 
						|
{
 | 
						|
    if (is_updater ())
 | 
						|
    {
 | 
						|
        $brandID = $_POST['brand_id'];
 | 
						|
        $brandService = new BrandService();
 | 
						|
        $brandService->deleteBrand($brandID);
 | 
						|
    }
 | 
						|
}
 | 
						|
else
 | 
						|
{
 | 
						|
    echo $_SERVER['REQUEST_METHOD'];
 | 
						|
}
 | 
						|
 | 
						|
header('location:brands.php');
 | 
						|
 | 
						|
?>
 |