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: 344: 345: 346: 347: 348: 349: 350: 351: 352: 353: 354: 355: 356: 357: 358: 359: 360: 361: 362: 363: 364: 365: 366: 367: 368: 369: 370: 371: 372: 373: 374: 375: 376: 377: 378: 379: 380: 381: 382: 383: 384: 385: 386: 387: 388: 389: 390: 391: 392: 393: 394: 395: 396: 397: 398: 399: 400: 401: 402: 403: 404: 405: 406: 407: 408: 409: 410: 411: 412: 413: 414: 415: 416: 417: 418: 419: 420: 421: 422: 423: 424: 425: 426: 427: 428: 429: 430: 431: 432: 433: 434: 435: 436: 437: 438: 439: 440: 441: 442: 443: 444: 445: 446: 447: 448: 449: 450: 451: 452: 453: 454: 455: 456: 457: 458: 459: 460: 461: 462: 463: 464: 465: 466: 467: 468: 469: 470: 471: 472: 473: 474: 475: 476: 477: 478: 479: 480: 481: 482: 483: 484: 485: 486: 487: 488: 489: 490: 491: 492: 493: 494: 495: 496: 497: 498: 499: 500: 501: 502: 503: 504: 505: 506: 507: 508: 509: 510: 511: 512: 513: 514: 515: 516: 517: 518: 519: 520: 521: 522: 523: 524: 525: 526: 527: 528: 529: 530: 531: 532: 533: 534: 535: 536: 537: 538: 539: 540: 541: 542: 543: 544: 545: 546: 547: 548: 549: 550: 551: 552: 553: 554: 555: 556: 557: 558: 559: 560: 561: 562: 563: 564: 565: 566: 567: 568: 569: 570: 571: 572: 573: 574: 575: 576: 577: 578: 579: 580: 581: 582: 583: 584: 585: 586: 587: 588: 589: 590: 591: 592: 593: 594: 595: 596: 597: 598: 599: 600: 601: 602: 603: 604: 605: 606: 607: 608: 609: 610: 611: 612: 613: 614: 615: 616: 617: 618: 619: 620: 621: 622: 623: 624: 625: 626: 627: 628: 629: 630: 631: 632: 633: 634: 635: 636: 637: 638: 639: 640: 641: 642: 643: 644: 645: 646: 647: 648: 649: 650: 651: 652: 653: 654: 655: 656: 657: 658: 659: 660: 661: 662: 663: 664: 665: 666: 667: 668: 669: 670: 671: 672: 673: 674: 675: 676: 677: 678: 679: 680: 681: 682: 683: 684: 685: 686: 687: 688: 689: 690: 691: 692: 693: 694: 695: 696: 697: 698: 699: 700: 701: 702: 703: 704: 705: 706: 707: 708: 709: 710: 711: 712: 713: 714: 715: 716: 717: 718: 719: 720: 721: 722: 723: 724: 725: 726: 727: 728: 729: 730: 731: 732: 733: 734: 735: 736: 737: 738: 739: 740: 741: 742: 743: 744: 745: 746: 747: 748: 749: 750: 751: 752: 753: 754: 755: 756: 757: 758: 759: 760: 761: 762: 763: 764: 765: 766: 767: 768: 769: 770: 771: 772: 773: 774: 775: 776: 777: 778: 779: 780: 781: 782: 783: 784: 785: 786: 787: 788: 789: 790: 791: 792: 793: 794: 795: 796: 797: 798: 799: 800: 801: 802: 803: 804: 805: 806: 807: 808: 809: 810: 811: 812: 813: 814: 815: 816: 817: 818: 819: 820: 821: 822: 823: 824: 825: 826: 827: 828: 829: 830: 831: 832: 833: 834: 835: 836: 837: 838: 839: 840: 841: 842: 843: 844: 845: 846: 847: 848: 849: 850: 851: 852: 853: 854: 855: 856: 857: 858: 859: 860: 861: 862: 863: 864: 865: 866: 867: 868: 869: 870: 871: 872: 873: 874: 875: 876: 877: 878: 879: 880: 881: 882: 883: 884: 885: 886: 887: 888: 889: 890: 891: 892: 893: 894: 895: 896: 897: 898: 899: 900: 901: 902: 903: 904: 905: 906: 907: 908: 909: 910: 911: 912: 913: 914: 915: 916: 917: 918: 919: 920: 921: 922: 923: 924: 925: 926: 927: 928: 929: 930: 931: 932: 933: 934: 935: 936: 937: 938: 939: 940: 941: 942: 943: 944: 945: 946: 947: 948: 949: 950: 951: 952: 953: 954: 955: 956: 957: 958: 959: 960: 961: 962: 963: 964: 965: 966: 967: 968: 969: 970: 971: 972: 973: 974: 975: 976: 977: 978: 979: 980: 981: 982: 983: 984: 985: 986: 987: 988: 989: 990: 991: 992: 993: 994: 995: 996: 997: 998: 999: 1000: 1001: 1002: 1003: 1004: 1005: 1006: 1007: 1008: 1009: 1010: 1011: 1012: 1013: 1014: 1015: 1016: 1017: 1018: 1019: 1020: 1021: 1022: 1023: 1024: 1025: 1026: 1027: 1028: 1029: 1030: 1031: 1032: 1033: 1034: 1035: 1036: 1037: 1038: 1039: 1040: 1041: 1042: 1043: 1044: 1045: 1046: 1047: 1048: 1049: 1050: 1051: 1052:
<?php
defined("ICMS_ROOT_PATH") or die("ImpressCMS root path not defined");
class icms_ipf_Handler extends icms_core_ObjectHandler {
public $_itemname;
public $table;
public $keyName;
public $className;
public $identifierName;
public $summaryName;
public $_page;
public $_modulePath;
public $_moduleUrl;
public $_moduleName;
public $uploadEnabled = false;
public $_uploadUrl;
public $_uploadPath;
public $_allowedMimeTypes = 0;
public $_maxFileSize = 1000000;
public $_maxWidth = 500;
public $_maxHeight = 500;
public $highlightFields = array();
public $eventArray = array();
public $permissionsArray = false;
public $generalSQL = false;
public $_eventHooks = array();
public $_disabledEvents = array();
public function __construct(&$db, $itemname, $keyname, $idenfierName, $summaryName, $modulename) {
parent::__construct($db);
$this->_itemname = $itemname;
if ($modulename == '') {
$this->_moduleName = 'system';
$this->table = $db->prefix($itemname);
} else {
$this->_moduleName = $modulename;
$this->table = $db->prefix($modulename . "_" . $itemname);
}
$this->keyName = $keyname;
if ($modulename == 'icms')
$classname = $modulename . '_' . $itemname . '_Object';
else
$classname = 'mod_' . $modulename . '_' . ucfirst($itemname);
if (!class_exists($classname))
$classname = ucfirst($modulename) . ucfirst($itemname);
$this->className = $classname;
$this->identifierName = $idenfierName;
$this->summaryName = $summaryName;
$this->_page = $itemname . ".php";
$this->_modulePath = ICMS_ROOT_PATH . "/modules/" . $this->_moduleName . "/";
$this->_moduleUrl = ICMS_URL . "/modules/" . $this->_moduleName . "/";
$this->_uploadPath = ICMS_UPLOAD_PATH . "/" . $this->_moduleName . "/";
$this->_uploadUrl = ICMS_UPLOAD_URL . "/" . $this->_moduleName . "/";
}
public function addEventHook($event, $method) {
$this->_eventHooks[$event] = $method;
}
public function addPermission($perm_name, $caption, $description = false) {
$this->permissionsArray[] = array(
'perm_name' => $perm_name,
'caption' => $caption,
'description' => $description
);
}
public function setGrantedObjectsCriteria(&$criteria, $perm_name) {
$icmspermissions_handler = new icms_ipf_permission_Handler($this);
$grantedItems = $icmspermissions_handler->getGrantedItems($perm_name);
if (count($grantedItems) > 0) {
$criteria->add(new icms_db_criteria_Item($this->keyName, '(' . implode(', ', $grantedItems) . ')', 'IN'));
return true;
} else {
return false;
}
}
public function &create($isNew = true) {
$obj = new $this->className($this);
if (!$obj->handler) {
$obj->handler =& $this;
}
if ($isNew === true) {
$obj->setNew();
}
if ($this->uploadEnabled)
$obj->setImageDir($this->getImageUrl(), $this->getImagePath());
return $obj;
}
public function getImageUrl() {
return $this->_uploadUrl . $this->_itemname . "/";
}
public function getImagePath() {
$dir = $this->_uploadPath . $this->_itemname;
if (!file_exists($dir)) {
icms_core_Filesystem::mkdir($dir);
}
return $dir . "/";
}
public function &get($id, $as_object = true, $debug = false, $criteria = false) {
if (!$criteria) {
$criteria = new icms_db_criteria_Compo();
}
if (is_array($this->keyName)) {
foreach ($this->keyName as $i => $keyName) {
$criteria->add(new icms_db_criteria_Item($keyName, $id[$i], '=', $this->_itemname));
}
} else {
$criteria->add(new icms_db_criteria_Item($this->keyName, $id, '=', $this->_itemname));
}
$criteria->setLimit(1);
if ($debug) {
$obj_array = $this->getObjectsD($criteria, false, $as_object);
} else {
$obj_array = $this->getObjects($criteria, false, $as_object);
if (count($obj_array) && !isset($obj_array[0]) && is_object($obj_array[$id])) {
$obj_array[0] = $obj_array[$id];
unset($obj_array[$id]);
$obj_array[0]->unsetNew();
}
}
if (count($obj_array) != 1) {
$obj = $this->create();
return $obj;
}
return $obj_array[0];
}
public function &getD($id, $as_object = true) {
return $this->get($id, $as_object, true);
}
public function getObjects($criteria = null, $id_as_key = false, $as_object = true, $sql = false, $debug = false) {
$ret = array();
$limit = $start = 0;
if ($this->generalSQL) {
$sql = $this->generalSQL;
} elseif (!$sql) {
$sql = 'SELECT * FROM ' . $this->table . " AS " . $this->_itemname;
}
if (isset($criteria) && is_subclass_of($criteria, 'icms_db_criteria_Element')) {
$sql .= ' ' . $criteria->renderWhere();
if ($criteria->getSort() != '') {
$sql .= ' ORDER BY ' . $criteria->getSort() . ' ' . $criteria->getOrder();
}
$limit = $criteria->getLimit();
$start = $criteria->getStart();
}
if ($debug) {
icms_core_Debug::message($sql);
}
$result = $this->db->query($sql, $limit, $start);
if (!$result) {
return $ret;
}
return $this->convertResultSet($result, $id_as_key, $as_object);
}
public function query($sql, $criteria, $force = false, $debug = false) {
$ret = array();
if (isset($criteria) && is_subclass_of($criteria, 'icms_db_criteria_Element')) {
$sql .= ' ' . $criteria->renderWhere();
if ($criteria->groupby) {
$sql .= $criteria->getGroupby();
}
if ($criteria->getSort() != '') {
$sql .= ' ORDER BY ' . $criteria->getSort() . ' ' . $criteria->getOrder();
}
}
if ($debug) {
icms_core_Debug::message($sql);
}
if ($force) {
$result = $this->db->queryF($sql);
} else {
$result = $this->db->query($sql);
}
if (!$result) {
return $ret;
}
while ($myrow = $this->db->fetchArray($result)) {
$ret[] = $myrow;
}
return $ret;
}
public function getObjectsD($criteria = null, $id_as_key = false, $as_object = true, $sql = false) {
return $this->getObjects($criteria, $id_as_key, $as_object, $sql, true);
}
public function getObjectsAsArray($arrayObjects) {
$ret = array();
foreach ($arrayObjects as $key => $object) {
$ret[$key] = $object->toArray();
}
if (count($ret > 0)) {
return $ret;
} else {
return false;
}
}
public function convertResultSet($result, $id_as_key = false, $as_object = true) {
$ret = array();
while ($myrow = $this->db->fetchArray($result)) {
$obj =& $this->create(false);
$obj->assignVars($myrow);
if (!$id_as_key) {
if ($as_object) {
$ret[] =& $obj;
}
else {
$ret[] = $obj->toArray();
}
} else {
if ($as_object) {
$value =& $obj;
}
else {
$value = $obj->toArray();
}
if ($id_as_key === 'parentid') {
$ret[$obj->getVar($obj->handler->parentName, 'e')][$obj->getVar($this->keyName)] =& $value;
} else {
$ret[$obj->getVar($this->keyName)] = $value;
}
}
unset($obj);
}
return $ret;
}
public function getListD($criteria = null, $limit = 0, $start = 0) {
return $this->getList($criteria, $limit, $start, true);
}
public function getList($criteria = null, $limit = 0, $start = 0, $debug = false) {
$ret = array();
if ($criteria == null) {
$criteria = new icms_db_criteria_Compo();
}
if ($criteria->getSort() == '') {
$criteria->setSort($this->getIdentifierName());
}
$sql = 'SELECT ' . (is_array($this->keyName) ? implode(', ', $this->keyName) : $this->keyName) ;
if (!empty($this->identifierName)) {
$sql .= ', ' . $this->getIdentifierName();
}
$sql .= ' FROM '.$this->table . " AS " . $this->_itemname;
if (isset($criteria) && is_subclass_of($criteria, 'icms_db_criteria_Element')) {
$sql .= ' ' . $criteria->renderWhere();
if ($criteria->getSort() != '') {
$sql .= ' ORDER BY ' . $criteria->getSort() . ' ' . $criteria->getOrder();
}
$limit = $criteria->getLimit();
$start = $criteria->getStart();
}
if ($debug) {
icms_core_Debug::message($sql);
}
$result = $this->db->query($sql, $limit, $start);
if (!$result) {
return $ret;
}
while ($myrow = $this->db->fetchArray($result)) {
$ret[$myrow[$this->keyName]] = empty($this->identifierName) ? 1
: icms_core_DataFilter::checkVar($myrow[$this->identifierName], 'text', 'output');
}
return $ret;
}
public function getCount($criteria = null) {
$field = "";
$groupby = false;
if (isset($criteria) && is_subclass_of($criteria, 'icms_db_criteria_Element')) {
if ($criteria->groupby != "") {
$groupby = true;
$field = $criteria->groupby . ", ";
}
}
if ($this->generalSQL) {
$sql = $this->generalSQL;
$sql = str_replace('SELECT *', 'SELECT COUNT(*)', $sql);
} else {
$sql = 'SELECT ' . $field . 'COUNT(*) FROM ' . $this->table . ' AS ' . $this->_itemname;
}
if (isset($criteria) && is_subclass_of($criteria, 'icms_db_criteria_Element')) {
$sql .= ' ' . $criteria->renderWhere();
if ($criteria->groupby != "") {
$sql .= $criteria->getGroupby();
}
}
$result = $this->db->query($sql);
if (!$result) {
return 0;
}
if ($groupby == false) {
list($count) = $this->db->fetchRow($result);
return $count;
} else {
$ret = array();
while (list($id, $count) = $this->db->fetchRow($result)) {
$ret[$id] = $count;
}
return $ret;
}
}
public function delete(&$obj, $force = false) {
$eventResult = $this->executeEvent('beforeDelete', $obj);
if (!$eventResult) {
$obj->setErrors("An error occured during the BeforeDelete event");
return false;
}
if (is_array($this->keyName)) {
$clause = array();
for ($i = 0; $i < count($this->keyName); $i++) {
$clause[] = $this->keyName[$i] . ' = ' . $obj->getVar($this->keyName[$i]);
}
$whereclause = implode(" AND ", $clause);
} else {
$whereclause = $this->keyName . ' = ' . $obj->getVar($this->keyName);
}
$sql = 'DELETE FROM ' . $this->table . ' WHERE ' . $whereclause;
if (false != $force) {
$result = $this->db->queryF($sql);
} else {
$result = $this->db->query($sql);
}
if (!$result) {
return false;
}
foreach ($obj->vars as $key => $var) {
if ($var["data_type"] == XOBJ_DTYPE_URLLINK) {
$urllinkObj = $obj->getUrlLinkObj($key);
$urllinkObj->delete($force);
unset($urllinkObj);
}
if ($var["data_type"] == XOBJ_DTYPE_FILE) {
$fileObj = $obj->getFileObj($key);
$fileObj->delete($force);
unset($fileObj);
}
}
$this->deleteGrantedPermissions($obj);
$eventResult = $this->executeEvent('afterDelete', $obj);
if (!$eventResult) {
$obj->setErrors("An error occured during the AfterDelete event");
return false;
}
return true;
}
private function deleteGrantedPermissions($obj = NULL) {
$gperm_handler = icms::handler("icms_member_groupperm");
$module = icms::handler("icms_module")->getByDirname($this->_moduleName);
$permissions = $this->getPermissions();
if ($permissions === FALSE) return TRUE;
foreach ($permissions as $permission) {
if ($obj != NULL) {
$gperm_handler->deleteByModule($module->getVar("mid"), $permission["perm_name"], $obj->id());
} else {
$gperm_handler->deleteByModule($module->getVar("mid"), $permission["perm_name"]);
}
}
return TRUE;
}
public function disableEvent($event) {
if (is_array($event)) {
foreach ($event as $v) {
$this->_disabledEvents[] = $v;
}
} else {
$this->_disabledEvents[] = $event;
}
}
public function getIdsFromObjectsAsArray($objectsAsArray) {
$ret = array();
foreach ($objectsAsArray as $array) {
$ret[] = $array[$this->keyName];
}
return $ret;
}
public function getPermissions() {
return $this->permissionsArray;
}
public function insert(&$obj, $force = false, $checkObject = true, $debug = false) {
if ($checkObject != false) {
if (!is_object($obj)) {
return false;
}
if (!is_a($obj, $this->className)) {
$obj->setErrors(get_class($obj) . ' Differs from ' . $this->className);
return false;
}
if (!$obj->isDirty()) {
$obj->setErrors("Not dirty");
return true;
}
}
if ($obj->seoEnabled) {
$icms_metagen = new icms_ipf_Metagen($obj->title(), $obj->getVar('meta_keywords'), $obj->summary());
if (!$obj->getVar('meta_keywords') || !$obj->getVar('meta_description')) {
if (!$obj->meta_keywords()) {
$obj->setVar('meta_keywords', $icms_metagen->_keywords);
}
if (!$obj->meta_description()) {
$obj->setVar('meta_description', $icms_metagen->_meta_description);
}
}
if (!$obj->short_url()) {
$obj->setVar('short_url', $icms_metagen->generateSeoTitle($obj->title('n'), false));
}
}
$eventResult = $this->executeEvent('beforeSave', $obj);
if (!$eventResult) {
$obj->setErrors('An error occured during the BeforeSave event');
return false;
}
if ($obj->isNew()) {
$eventResult = $this->executeEvent('beforeInsert', $obj);
if (!$eventResult) {
$obj->setErrors('An error occured during the BeforeInsert event');
return false;
}
} else {
$eventResult = $this->executeEvent('beforeUpdate', $obj);
if (!$eventResult) {
$obj->setErrors('An error occured during the BeforeUpdate event');
return false;
}
}
if (!$obj->cleanVars()) {
$obj->setErrors('Variables were not cleaned properly.');
return false;
}
$fieldsToStoreInDB = array();
foreach ($obj->cleanVars as $k => $v) {
if ($obj->vars[$k]['data_type'] == XOBJ_DTYPE_INT) {
$cleanvars[$k] = (int) ($v);
} elseif (is_array($v)) {
$cleanvars[ $k ] = $this->db->quoteString( implode( ',', $v ) );
} else {
$cleanvars[$k] = $this->db->quoteString($v);
}
if ($obj->vars[$k]['persistent']) {
$fieldsToStoreInDB[$k] = $cleanvars[$k];
}
}
if ($obj->isNew()) {
if (!is_array($this->keyName)) {
if ($cleanvars[$this->keyName] < 1) {
$cleanvars[$this->keyName] = $this->db->genId($this->table.'_'.$this->keyName.'_seq');
}
}
$sql = 'INSERT INTO ' . $this->table . ' (' . implode(',', array_keys($fieldsToStoreInDB))
. ') VALUES (' . implode(',', array_values($fieldsToStoreInDB)) . ')';
} else {
$sql = 'UPDATE ' . $this->table . ' SET';
foreach ($fieldsToStoreInDB as $key => $value) {
if ((!is_array($this->keyName) && $key == $this->keyName)
|| (is_array($this->keyName) && in_array($key, $this->keyName))) {
continue;
}
if (isset($notfirst)) {
$sql .= ',';
}
$sql .= ' ' . $key . ' = ' . $value;
$notfirst = true;
}
if (is_array($this->keyName)) {
$whereclause = '';
for ($i = 0; $i < count($this->keyName); $i++) {
if ($i > 0) {
$whereclause .= ' AND ';
}
$whereclause .= $this->keyName[$i] . ' = ' . $obj->getVar($this->keyName[$i]);
}
} else {
$whereclause = $this->keyName . ' = ' . $obj->getVar($this->keyName);
}
$sql .= ' WHERE ' . $whereclause;
}
if ($debug) {
icms_core_Debug::message($sql);
}
if (false != $force) {
$result = $this->db->queryF($sql);
} else {
$result = $this->db->query($sql);
}
if (!$result) {
$obj->setErrors($this->db->error());
return false;
}
if ($obj->isNew() && !is_array($this->keyName)) {
$obj->assignVar($this->keyName, $this->db->getInsertId());
}
$eventResult = $this->executeEvent('afterSave', $obj);
if (!$eventResult) {
$obj->setErrors('An error occured during the AfterSave event');
return false;
}
if ($obj->isNew()) {
$obj->unsetNew();
$eventResult = $this->executeEvent('afterInsert', $obj);
if (!$eventResult) {
$obj->setErrors('An error occured during the AfterInsert event');
return false;
}
} else {
$eventResult = $this->executeEvent('afterUpdate', $obj);
if (!$eventResult) {
$obj->setErrors('n error occured during the AfterUpdate event');
return false;
}
}
return true;
}
public function insertD(&$obj, $force = false, $checkObject = true, $debug = false) {
return $this->insert($obj, $force, $checkObject, true);
}
public function updateAll($fieldname, $fieldvalue, $criteria = null, $force = false) {
$set_clause = $fieldname . ' = ';
if (is_numeric($fieldvalue)) {
$set_clause .= $fieldvalue;
} elseif (is_array($fieldvalue)) {
$set_clause .= $this->db->quoteString(implode(',', $fieldvalue));
} else {
$set_clause .= $this->db->quoteString($fieldvalue);
}
$sql = 'UPDATE '.$this->table.' SET '.$set_clause;
if (isset($criteria) && is_subclass_of($criteria, 'icms_db_criteria_Element')) {
$sql .= ' ' . $criteria->renderWhere();
}
if (false != $force) {
$result = $this->db->queryF($sql);
} else {
$result = $this->db->query($sql);
}
if (!$result) {
return false;
}
return true;
}
public function deleteAll($criteria = NULL) {
if (isset($criteria) && is_subclass_of($criteria, 'icms_db_criteria_Element')) {
$rows = 0;
$objects = $this->getObjects($criteria);
foreach ($objects as $obj) {
if ($this->delete($obj, TRUE)) {
$rows++;
}
}
return $rows > 0 ? $rows : TRUE;
}
return FALSE;
}
public function getModuleInfo() {
return icms_getModuleInfo($this->_moduleName);
}
public function getModuleConfig() {
return icms_getModuleConfig($this->_moduleName);
}
public function getModuleItemString() {
$ret = $this->_moduleName . '_' . $this->_itemname;
return $ret;
}
public function updateCounter($object) {
if (isset($object->vars['counter'])) {
$new_counter = $object->getVar('counter') + 1;
$sql = 'UPDATE ' . $this->table . ' SET counter=' . $new_counter
. ' WHERE ' . $this->keyName . '=' . $object->id();
$this->query($sql, null, true);
}
}
public function executeEvent($event, &$executeEventObj) {
if (!in_array($event, $this->_disabledEvents)) {
if (method_exists($this, $event)) {
$ret = $this->$event($executeEventObj);
} else {
if (isset($this->_eventHooks[$event])) {
$method = $this->_eventHooks[$event];
if (method_exists($this, $method)) {
$ret = $this->$method($executeEventObj);
}
}
$ret = true;
}
return $ret;
}
return true;
}
public function getIdentifierName($withprefix = true) {
if ($withprefix) {
return $this->_itemname . "." . $this->identifierName;
} else {
return $this->identifierName;
}
}
public function enableUpload($allowedMimeTypes = false, $maxFileSize = false, $maxWidth = false, $maxHeight = false) {
$this->uploadEnabled = true;
$this->_allowedMimeTypes = $allowedMimeTypes ? $allowedMimeTypes : $this->_allowedMimeTypes;
$this->_maxFileSize = $maxFileSize ? $maxFileSize : $this->_maxFileSize;
$this->_maxWidth = $maxWidth ? $maxWidth : $this->_maxWidth;
$this->_maxHeight = $maxHeight ? $maxHeight : $this->_maxHeight;
}
public function setUploaderConfig($_uploadPath = false, $_allowedMimeTypes = false, $_maxFileSize = false, $_maxWidth = false, $_maxHeight = false) {
$this->uploadEnabled = true;
$this->_uploadPath = $_uploadPath ? $_uploadPath : $this->_uploadPath;
$this->_allowedMimeTypes = $_allowedMimeTypes ? $_allowedMimeTypes : $this->_allowedMimeTypes;
$this->_maxFileSize = $_maxFileSize ? $_maxFileSize : $this->_maxFileSize;
$this->_maxWidth = $_maxWidth ? $_maxWidth : $this->_maxWidth;
$this->_maxHeight = $_maxHeight ? $_maxHeight : $this->_maxHeight;
}
}