<?php
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
* Description of Product
*
* @author Nipuni
*/
class Brand {
public $id;
public $name;
public $logo;
public $sort;
public function __construct($id) {
if ($id) {
$query = "SELECT * FROM `brands` WHERE `id`=" . $id;
$db = new Database();
$result = mysql_fetch_array($db->readQuery($query));
$this->id = $result['id'];
$this->name = $result['name'];
$this->logo = $result['logo'];
$this->sort = $result['sort'];
return $this;
}
}
public function create() {
$query = "INSERT INTO `brands` (`name`,`logo`,`sort`) VALUES ('"
. $this->name . "', '"
. $this->logo . "', '"
. $this->sort . "')";
$db = new Database();
$result = $db->readQuery($query);
if ($result) {
$last_id = mysql_insert_id();
return $this->__construct($last_id);
} else {
return FALSE;
}
}
public function all() {
$query = "SELECT * FROM `brands` ORDER BY sort ASC";
$db = new Database();
$result = $db->readQuery($query);
$array_res = array();
while ($row = mysql_fetch_array($result)) {
array_push($array_res, $row);
}
return $array_res;
}
public function update() {
$query = "UPDATE `brands` SET "
. "`name` ='" . $this->name . "', "
. "`logo` ='" . $this->logo . "' "
. "WHERE `id` = '" . $this->id . "'";
$db = new Database();
$result = $db->readQuery($query);
if ($result) {
return $this->__construct($this->id);
} else {
return FALSE;
}
}
public function delete() {
$query = 'DELETE FROM `brands` WHERE id="' . $this->id . '"';
$db = new Database();
return $db->readQuery($query);
}
public function getProductsById($brands) {
$query = 'SELECT * FROM `brands` WHERE type="' . $brands . '" ORDER BY queue ASC';
$db = new Database();
$result = $db->readQuery($query);
$array_res = array();
while ($row = mysql_fetch_array($result)) {
array_push($array_res, $row);
}
return $array_res;
}
public function arrange($key, $img) {
$query = "UPDATE `brands` SET `sort` = '" . $key . "' WHERE id = '" . $img . "'";
$db = new Database();
$result = $db->readQuery($query);
return $result;
}
}
|