Ejemplo n.º 1
0
 public static function find_all_by_entry_id($entry_id)
 {
     $result = pg_query("select * from comments where entry_id = '" . pesc($entry_id) . "' order by posted_at desc");
     $entries = array();
     while ($row = pg_fetch_assoc($result)) {
         array_push($entries, self::from_row($row));
     }
     return $entries;
 }
Ejemplo n.º 2
0
 public static function find_by_name($name)
 {
     $result = pg_query("select * from entries where name='" . pesc($name) . "'");
     if ($row = pg_fetch_assoc($result)) {
         return self::from_row($row);
     } else {
         return null;
     }
 }
Ejemplo n.º 3
0
 public function delete()
 {
     if ($this->id == 0) {
         return false;
     }
     $result = pg_query('update cars set deleted=TRUE where id=\'' . pesc($this->id) . '\'');
     self::getRows(true);
     return pg_affected_rows($result) > 0;
 }