2011-12-08 23:04:56 +04:00
|
|
|
<?php
|
|
|
|
|
2011-12-22 00:55:52 +04:00
|
|
|
class OC_Gallery_Album {
|
2012-01-08 03:14:34 +04:00
|
|
|
public static function create($owner, $name, $path){
|
|
|
|
$stmt = OC_DB::prepare('INSERT INTO *PREFIX*gallery_albums (uid_owner, album_name, album_path) VALUES (?, ?, ?)');
|
|
|
|
$stmt->execute(array($owner, $name, $path));
|
2011-12-08 23:04:56 +04:00
|
|
|
}
|
2011-12-22 00:55:52 +04:00
|
|
|
|
|
|
|
public static function rename($oldname, $newname, $owner) {
|
|
|
|
$stmt = OC_DB::prepare('UPDATE OR IGNORE *PREFIX*gallery_albums SET album_name=? WHERE uid_owner=? AND album_name=?');
|
|
|
|
$stmt->execute(array($newname, $owner, $oldname));
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function remove($owner, $name=null) {
|
|
|
|
$sql = 'DELETE FROM *PREFIX*gallery_albums WHERE uid_owner = ?';
|
|
|
|
$args = array($owner);
|
|
|
|
if (!is_null($name)){
|
|
|
|
$sql .= ' AND album_name = ?';
|
|
|
|
$args[] = $name;
|
|
|
|
}
|
|
|
|
$stmt = OC_DB::prepare($sql);
|
|
|
|
return $stmt->execute($args);
|
|
|
|
}
|
|
|
|
|
2012-01-08 03:14:34 +04:00
|
|
|
public static function find($owner, $name=null, $path=null){
|
2011-12-08 23:04:56 +04:00
|
|
|
$sql = 'SELECT * FROM *PREFIX*gallery_albums WHERE uid_owner = ?';
|
|
|
|
$args = array($owner);
|
|
|
|
if (!is_null($name)){
|
|
|
|
$sql .= ' AND album_name = ?';
|
|
|
|
$args[] = $name;
|
2012-01-08 03:14:34 +04:00
|
|
|
}
|
|
|
|
if (!is_null($path)){
|
|
|
|
$sql .= ' AND album_path = ?';
|
|
|
|
$args[] = $path;
|
|
|
|
}
|
2011-12-08 23:04:56 +04:00
|
|
|
$stmt = OC_DB::prepare($sql);
|
|
|
|
return $stmt->execute($args);
|
|
|
|
}
|
2012-01-08 03:14:34 +04:00
|
|
|
|
2011-12-08 23:04:56 +04:00
|
|
|
}
|
2012-01-08 03:14:34 +04:00
|
|
|
|
|
|
|
?>
|