blob: cfef06bde4a9bf1dd879c14829cf678ed388838f (
plain)
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
102
103
|
<?php
/* Foursquare Community Site
*
* Copyright (C) 2011 Foursquare Church.
*
* Developers: Jesse Morgan <jmorgan@foursquarestaff.com>
*
*/
require_once "base.inc.php";
class Category {
private $info;
private $options = array('price' => false);
public function __construct($info=null) {
$this->info = $info;
if (isset($this->info['options'])) {
foreach (split(',', $this->info['options']) as $op) {
$this->options[$op] = true;
}
}
}
public static function getCategories() {
$db = getDatabase();
$query = "SELECT * FROM category ORDER BY name";
$rows = $db->fetchAssocRows($query);
$result = array();
foreach ($rows as $row) {
$cat = new Category($row);
$result[$row['shortname']] = $cat;
}
return $result;
}
public static function getById($id) {
$where = "id='$id'";
return Category::getCategory($where);
}
public static function getByShortname($shortname) {
$where = "shortname='$shortname'";
return Category::getCategory($where);
}
private static function getCategory($where) {
$query = "SELECT * FROM category WHERE $where";
$db = getDatabase();
$row = $db->fetchAssocRow($query);
if ($row) {
$category = new Category($row);
return $category;
} else {
return false;
}
}
public function save() {
$db = getDatabase();
// TODO: Implement Save
}
public function getId() {
return $this->info['id'];
}
public function getName() {
return htmlspecialchars($this->info['name']);
}
public function getShortname() {
return htmlspecialchars($this->info['shortname']);
}
public function getDescription() {
return htmlspecialchars($this->info['description']);
}
public function getOption($name) {
return $this->options[$name];
}
public function setOption($value) {
$this->options[$name] = $value;
}
}
?>
|