Example #1
0
function dahlen_image_get_zenphoto_album_images($albumID)
{
    return db_fetch_all_assoc("SELECT `id`,`albumid`,`filename`,`sort_order`,`width`,`height` FROM `zp_images` WHERE `albumid`={$albumID}");
}
Example #2
0
 private function getAllContacts()
 {
     $this->contacts = db_fetch_all_assoc("SELECT * FROM `" . self::$TABLE_NAME);
 }
Example #3
0
 public static function getAllTemplates()
 {
     return db_fetch_all_assoc("SELECT * FROM `" . self::$TABLE_NAME . "`");
 }