summaryrefslogtreecommitdiff
path: root/htdocs/src/Category.inc.php
blob: fdcd210922c5aaa20aa3285c0bcd4bb3b9310d4b (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
<?php

/* Foursquare Community Site
 * 
 * Copyright (C) 2011 Foursquare Church.
 * 
 * Developers: Jesse Morgan <jmorgan@foursquarestaff.com>
 *
 */

require_once "base.inc.php";

class Category {
    private $info;


    public function __construct($info=null) {
        $this->info = $info;
    }

    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();
            $category->info = $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']);
    }
}

?>