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: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250: 251: 252: 253: 254: 255: 256: 257: 258: 259: 260: 261: 262: 263: 264: 265: 266: 267: 268: 269: 270: 271: 272: 273: 274: 275: 276: 277: 278: 279: 280: 281: 282: 283: 284: 285: 286: 287: 288: 289: 290: 291: 292: 293: 294: 295: 296: 297: 298: 299: 300: 301: 302: 303: 304: 305: 306: 307: 308: 309: 310: 311: 312: 313: 314: 315: 316: 317: 318: 319: 320: 321: 322: 323: 324: 325: 326: 327: 328: 329: 330: 331: 332: 333: 334: 335: 336: 337: 338: 339: 340: 341: 342: 343:
<?php
defined('ICMS_ROOT_PATH') or die("ImpressCMS root path not defined");
class icms_image_category_Handler extends icms_core_ObjectHandler {
public function &create($isNew = true) {
$imgcat = new icms_image_category_Object();
if ($isNew) {
$imgcat->setNew();
}
return $imgcat;
}
public function &get($id) {
$id = (int) ($id);
$imgcat = false;
if ($id > 0) {
$sql = "SELECT * FROM ".$this->db->prefix('imagecategory') . " WHERE imgcat_id='" . $id . "'";
if (!$result = $this->db->query($sql)) {
return $imgcat;
}
$numrows = $this->db->getRowsNum($result);
if ($numrows == 1) {
$imgcat = new icms_image_category_Object();
$imgcat->assignVars($this->db->fetchArray($result));
}
}
return $imgcat;
}
public function insert(&$imgcat) {
if (!is_a($imgcat, 'icms_image_category_Object')) {
return false;
}
if (!$imgcat->isDirty()) {
return true;
}
if (!$imgcat->cleanVars()) {
return false;
}
foreach ( $imgcat->cleanVars as $k => $v) {
${$k} = $v;
}
if ($imgcat->isNew()) {
$imgcat_id = $this->db->genId('imgcat_imgcat_id_seq');
$sql = sprintf("INSERT INTO %s (imgcat_id, imgcat_pid, imgcat_name, imgcat_foldername, imgcat_display, imgcat_weight, imgcat_maxsize, imgcat_maxwidth, imgcat_maxheight, imgcat_type, imgcat_storetype) VALUES ('%u', '%u', %s, %s, '%u', '%u', '%u', '%u', '%u', %s, %s)",
$this->db->prefix('imagecategory'),
(int) $imgcat_id,
(int) $imgcat_pid,
$this->db->quoteString($imgcat_name),
$this->db->quoteString($imgcat_foldername),
(int) $imgcat_display,
(int) $imgcat_weight,
(int) $imgcat_maxsize,
(int) $imgcat_maxwidth,
(int) $imgcat_maxheight,
$this->db->quoteString($imgcat_type),
$this->db->quoteString($imgcat_storetype)
);
} else {
$sql = sprintf("UPDATE %s SET imgcat_pid = %u, imgcat_name = %s, imgcat_foldername = %s, imgcat_display = '%u', imgcat_weight = '%u', imgcat_maxsize = '%u', imgcat_maxwidth = '%u', imgcat_maxheight = '%u', imgcat_type = %s WHERE imgcat_id = '%u'",
$this->db->prefix('imagecategory'),
(int) $imgcat_pid,
$this->db->quoteString($imgcat_name),
$this->db->quoteString($imgcat_foldername),
(int) $imgcat_display,
(int) $imgcat_weight,
(int) $imgcat_maxsize,
(int) $imgcat_maxwidth,
(int) $imgcat_maxheight,
$this->db->quoteString($imgcat_type),
(int) $imgcat_id
);
}
if (!$result = $this->db->query($sql)) {
return false;
}
if (empty($imgcat_id)) {
$imgcat_id = $this->db->getInsertId();
}
$imgcat->assignVar('imgcat_id', $imgcat_id);
return true;
}
public function delete(&$imgcat) {
if (!is_a($imgcat, 'icms_image_category_Object')) {
return false;
}
$sql = sprintf("DELETE FROM %s WHERE imgcat_id = '%u'", $this->db->prefix('imagecategory'), (int) ($imgcat->getVar('imgcat_id')));
if (!$result = $this->db->query($sql)) {
return false;
}
return true;
}
public function getObjects($criteria = null, $id_as_key = false) {
$ret = array();
$limit = $start = 0;
$sql = 'SELECT DISTINCT c.* FROM ' . $this->db->prefix('imagecategory') . ' c LEFT JOIN '
. $this->db->prefix('group_permission') . " l ON l.gperm_itemid=c.imgcat_id WHERE (l.gperm_name = 'imgcat_read' OR l.gperm_name = 'imgcat_write')";
if (isset($criteria) && is_subclass_of($criteria, 'icms_db_criteria_Element')) {
$where = $criteria->render();
$sql .= ($where != '') ? ' AND ' . $where : '';
$limit = $criteria->getLimit();
$start = $criteria->getStart();
}
$sql .= ' ORDER BY imgcat_weight, imgcat_id ASC';
$result = $this->db->query($sql, $limit, $start);
if (!$result) {
return $ret;
}
while ($myrow = $this->db->fetchArray($result)) {
$imgcat = new icms_image_category_Object();
$imgcat->assignVars($myrow);
if (!$id_as_key) {
$ret[] = &$imgcat;
} else {
$ret[$myrow['imgcat_id']] = &$imgcat;
}
unset($imgcat);
}
return $ret;
}
public function getCount($criteria = null) {
$sql = 'SELECT COUNT(*) FROM ' . $this->db->prefix('imagecategory') . ' i LEFT JOIN '
. $this->db->prefix('group_permission') . " l ON l.gperm_itemid=i.imgcat_id WHERE (l.gperm_name = 'imgcat_read' OR l.gperm_name = 'imgcat_write')";
if (isset($criteria) && is_subclass_of($criteria, 'icms_db_criteria_Element')) {
$where = $criteria->render();
$sql .= ($where != '') ? ' AND ' . $where : '';
}
if (!$result = &$this->db->query($sql)) {
return 0;
}
list($count) = $this->db->fetchRow($result);
return $count;
}
public function getList($groups = array(), $perm = 'imgcat_read', $display = null, $storetype = null) {
$criteria = new icms_db_criteria_Compo();
if (is_array($groups) && !empty($groups)) {
$criteriaTray = new icms_db_criteria_Compo();
foreach ( $groups as $gid) {
$criteriaTray->add(new icms_db_criteria_Item('gperm_groupid', $gid), 'OR');
}
$criteria->add($criteriaTray);
if ($perm == 'imgcat_read' || $perm == 'imgcat_write') {
$criteria->add(new icms_db_criteria_Item('gperm_name', $perm));
$criteria->add(new icms_db_criteria_Item('gperm_modid', 1));
}
}
if (isset($display)) {
$criteria->add(new icms_db_criteria_Item('imgcat_display', (int) ($display)));
}
if (isset($storetype)) {
$criteria->add(new icms_db_criteria_Item('imgcat_storetype', $storetype));
}
$categories = &$this->getObjects($criteria, true);
$ret = array();
foreach (array_keys($categories) as $i) {
$ret[$i] = $categories[$i]->getVar('imgcat_name');
}
return $ret;
}
public function getCategList($groups = array(), $perm = 'imgcat_read', $display = null, $storetype = null, $imgcat_id=null) {
$criteria = new icms_db_criteria_Compo();
if (is_array($groups) && !empty($groups)) {
$criteriaTray = new icms_db_criteria_Compo();
foreach ( $groups as $gid) {
$criteriaTray->add(new icms_db_criteria_Item('gperm_groupid', $gid), 'OR');
}
$criteria->add($criteriaTray);
if ($perm == 'imgcat_read' || $perm == 'imgcat_write') {
$criteria->add(new icms_db_criteria_Item('gperm_name', $perm));
$criteria->add(new icms_db_criteria_Item('gperm_modid', 1));
}
}
if (isset($display)) {
$criteria->add(new icms_db_criteria_Item('imgcat_display', (int) ($display)));
}
if (isset($storetype)) {
$criteria->add(new icms_db_criteria_Item('imgcat_storetype', $storetype));
}
if ($imgcat_id === NULL ) $imgcat_id = 0;
$criteria->add(new icms_db_criteria_Item('imgcat_pid', $imgcat_id));
$categories = &$this->getObjects($criteria, true);
$ret = array();
foreach ( array_keys($categories) as $i) {
$ret[$i] = $categories[$i]->getVar('imgcat_name');
$subcategories = $this->getCategList($groups, $perm, $display, $storetype, $categories[$i]->getVar('imgcat_id'));
foreach ( array_keys($subcategories) as $j) {
$ret[$j] = '-' . $subcategories[$j];
}
}
return $ret;
}
function getCategFolder(&$imgcat, $full=true, $type='path') {
if (!is_a($imgcat, 'icms_image_category_Object')) {
return false;
}
if ($imgcat->getVar('imgcat_pid') != 0) {
$sup = $this->get($imgcat->getVar('imgcat_pid'));
$supcateg = $this->getCategFolder($sup, false, $type);
} else {
$supcateg = 0;
}
$folder = ($supcateg) ? $supcateg . '/' : '';
if ($full) {
$folder = ( $type == 'path' )
? ICMS_IMANAGER_FOLDER_PATH . '/' . $folder
: ICMS_IMANAGER_FOLDER_URL . '/' . $folder;
}
return $folder . $imgcat->getVar('imgcat_foldername');
}
}