<?php
if(!defined('IN_DZZ')) {
exit('Access Denied');
}
class table_imagetype extends dzz_table
{
public function __construct() {
$this->_table = 'imagetype';
$this->_pk = 'typeid';
parent::__construct();
}
public function fetch_all_by_type($type, $available = null) {
$available = $available !== null ? ($available ? ' AND available=1' : ' AND available=0') : '';
return DB::fetch_all("SELECT * FROM %t WHERE type=%s %i ORDER BY displayorder", array($this->_table, $type, $available));
}
public function fetch_all_available() {
return DB::fetch_all("SELECT * FROM %t WHERE available=1", array($this->_table));
}
public function count_by_name($type, $name) {
return DB::result_first("SELECT COUNT(*) FROM %t WHERE type=%s AND name=%s", array($this->_table, $type, $name));
}
}
?>