summaryrefslogtreecommitdiff
path: root/htdocs/src/Page.inc.php
blob: edb058364b851b7946d2585b22c63da11643a7f2 (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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?php

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

require_once "base.inc.php";

class Page {
    private $info;
    private $indatabase;

    public function __construct($info=null) {
        $this->info = is_null($info) ? array() : $info;

        if ($info !== null and isset($info['id'])) {
            $this->indatabase = true;

        } else {
            $this->indatabase = false;
        }
    }
    
    public static function getById($id) {
        $where = "id='$id'";

        return Page::getPage($where);
    }

    public static function getByUrl($url) {
        $where = "url='$url'";

        return Page::getPage($where);
    }

    private static function getPage($where) {
        $query = "SELECT * FROM page WHERE $where";

        $db = getDatabase();
        
        $row = $db->fetchAssocRow($query);

        if ($row) {
            $page = new Page();
            $page->info = $row;
            $page->indatabase = true;

            return $page;

        } else {
            return false;
        }
    }

    public function save() {
        $db = getDatabase();

        // Cleanup Info
        foreach ($this->info as $key=>$value)
            $info[$key] = addslashes($value);

        // Save or create?
        if ($this->indatabase) {
            try {
                $db->update('page', $info, "WHERE `id`='"
                    . $this->getId() ."'");
                return true;

            } catch (Cif_Database_Exception $e) {
                return false;
            }

        } else {
            // Creating...
            try {
                $ret = $db->insert('page', $info);

                if ($ret) {
                    $this->info['id'] = $ret;
                    $this->indatabase = true;
                }

                return true;

            } catch (Cif_Database_Exception $e) {
                return false;
            }
        }
    }

    public function delete() {
        $db = getDatabase();

        $db->delete('page', 'id=' . $this->getId());

        $this->indatabase = false;
    }

    public function getId() {
        return $this->info['id'];
    }

    public function getTitle() {
        return $this->info['title'];
    }

    public function setTitle($value) {
        $this->info['title'] = $value;
    }

    public function getURL() {
        return $this->info['url'];
    }

    public function setURL($value) {
        $this->info['url'] = $value;
    }

    public function getContent() {
        return $this->info['content'];
    }

    public function setContent($value) {
        $this->info['content'] = $value;
    }
}

?>