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:
<?php
defined('ICMS_ROOT_PATH') or die('ImpressCMS root path not defined');
class icms_view_block_Handler extends icms_ipf_Handler {
private $block_positions;
private $modules_name;
public function __construct(&$db) {
parent::__construct($db, 'block', 'bid', 'title', 'content', 'icms');
$this->className = 'icms_view_block_Object';
$this->table = $this->db->prefix('newblocks');
}
public function getBlockPositions($full = false) {
if (!is_array($this->block_positions)) {
$icms_blockposition_handler = icms::handler('icms_view_block_position');
$block_positions = $icms_blockposition_handler->getObjects();
foreach ($block_positions as $bp) {
$this->block_positions[$bp->getVar('id')]['pname'] = $bp->getVar('pname');
$this->block_positions[$bp->getVar('id')]['title'] = $bp->getVar('title');
$this->block_positions[$bp->getVar('id')]['description'] = $bp->getVar('description');
$this->block_positions[$bp->getVar('id')]['block_default'] = $bp->getVar('block_default');
$this->block_positions[$bp->getVar('id')]['block_type'] = $bp->getVar('block_type');
}
}
if (!$full) {
foreach ($this->block_positions as $k => $block_position) {
$rtn[$k] = $block_position['pname'];
}
} else {
$rtn = $this->block_positions;
}
return $rtn;
}
public function getByModule($mid, $asObject = true) {
$mid = (int) $mid;
$criteria = new icms_db_criteria_Compo();
$criteria->add(new icms_db_criteria_Item('mid', $mid));
$ret = $this->getObjects($criteria, false, $asObject);
return $ret;
}
public function getAllBlocks($rettype = "object", $side = null, $visible = null, $orderby = "side, weight, bid", $isactive = 1) {
$ret = array();
$where_query = " WHERE isactive='" . (int) $isactive . "'";
if (isset($side)) {
$tp = ($side == -2) ? 'L' : (($side == -6) ? 'C' : '');
if ($tp != '') {
$q_side = "";
$icms_blockposition_handler = icms::handler('icms_view_block_position');
$criteria = new icms_db_criteria_Compo();
$criteria->add(new icms_db_criteria_Item('block_type', $tp));
$blockpositions = $icms_blockposition_handler->getObjects($criteria);
foreach ($blockpositions as $bp) {
$q_side .= "side='" . (int) $bp->getVar('id') . "' OR ";
}
$q_side = "('" . substr($q_side, 0, strlen($q_side) - 4) . "')";
} else {
$q_side = "side='" . (int) $side . "'";
}
$where_query .= " AND " . $q_side;
}
if (isset($visible)) {
$where_query .= " AND visible='" . (int) $visible . "'";
}
$where_query .= " ORDER BY $orderby";
switch ($rettype) {
case "object":
$sql = "SELECT * FROM " . $this->db->prefix("newblocks") . "" . $where_query;
$result = $this->db->query($sql);
while ($myrow = $this->db->fetchArray($result)) {
$ret[] = $this->get($myrow['bid']);
}
break;
case "list":
$sql = "SELECT * FROM " . $this->db->prefix("newblocks") . "" . $where_query;
$result = $this->db->query($sql);
if ($this->db->getRowsNum($result) > 0) {
$blockids = array();
while ($myrow = $this->db->fetchArray($result)) {
$blockids[] = $myrow['bid'];
}
$criteria = new icms_db_criteria_Compo();
$criteria->add(new icms_db_criteria_Item('bid', '(' . implode(',', $blockids) . ')', 'IN'));
$blocks = $this->getObjects($criteria, true, true);
foreach ($blocks as $block) {
$ret[$block->getVar("bid")] = $block->getVar("title");
}
unset($blockids, $blocks);
}
break;
case "id":
$sql = "SELECT bid FROM " . $this->db->prefix("newblocks") . "" . $where_query;
$result = $this->db->query($sql);
while ($myrow = $this->db->fetchArray($result)) {
$ret[] = $myrow['bid'];
}
break;
default:
break;
}
return $ret;
}
public function getAllByGroupModule($groupid, $module_id = '0-0', $toponlyblock = false, $visible = null, $orderby = 'b.weight, b.bid', $isactive = 1) {
$isactive = (int) $isactive;
$ret = array();
$sql = "SELECT DISTINCT gperm_itemid FROM " . $this->db->prefix('group_permission') . " WHERE gperm_name = 'block_read' AND gperm_modid = '1'";
if (is_array($groupid)) {
$gid = array_map('intval', $groupid);
$sql .= " AND gperm_groupid IN (" . implode(',', $gid) . ")";
} else {
if ((int) $groupid > 0) {
$sql .= " AND gperm_groupid='" . (int) $groupid . "'";
}
}
$result = $this->db->query($sql);
$blockids = array();
while ($myrow = $this->db->fetchArray($result)) {
$blockids[] = $myrow['gperm_itemid'];
}
if (!empty($blockids)) {
$sql = "SELECT b.* FROM " . $this->db->prefix('newblocks') . " b, " . $this->db->prefix('block_module_link') . " m WHERE m.block_id=b.bid";
$sql .= " AND b.isactive='" . $isactive . "'";
if (isset($visible)) {
$sql .= " AND b.visible='" . (int) ($visible) . "'";
}
$arr = explode('-', $module_id);
$module_id = (int) $arr[0];
$page_id = (int) $arr[1];
if ($module_id == 0) {
if ($page_id == 0) {
$sql .= " AND m.module_id='0' AND m.page_id=0";
} elseif ($page_id == 1) {
$sql .= " AND ((m.module_id='0' AND m.page_id=0) OR (m.module_id='0' AND m.page_id=1))";
}
} else {
if ($page_id == 0) {
$sql .= " AND ((m.module_id='0' AND m.page_id=0) OR (m.module_id='$module_id' AND m.page_id=0))";
} else {
$sql .= " AND ((m.module_id='0' AND m.page_id=0) OR (m.module_id='$module_id' AND m.page_id=0) OR (m.module_id='$module_id' AND m.page_id=$page_id))";
}
}
$sql .= " AND b.bid IN (" . implode(',', $blockids) . ")";
$sql .= " ORDER BY " . $orderby;
$result = $this->db->query($sql);
if ($this->db->getRowsNum($result) > 0) {
unset($blockids);
while ($myrow = $this->db->fetchArray($result)) {
$blockids[] = $myrow['bid'];
}
$ret = $this->getMultiple($blockids);
}
}
return $ret;
}
public function getNonGroupedBlocks($module_id = 0, $toponlyblock = false, $visible = null, $orderby = 'b.weight, b.bid', $isactive = 1) {
$ret = array();
$bids = array();
$sql = "SELECT DISTINCT(bid) from " . $this->db->prefix('newblocks');
if ($result = $this->db->query($sql)) {
while ($myrow = $this->db->fetchArray($result)) {
$bids[] = $myrow['bid'];
}
}
$sql = "SELECT DISTINCT(p.gperm_itemid) from " . $this->db->prefix('group_permission') . " p, " . $this->db->prefix('groups') . " g WHERE g.groupid=p.gperm_groupid AND p.gperm_name='block_read'";
$grouped = array();
if ($result = $this->db->query($sql)) {
while ($myrow = $this->db->fetchArray($result)) {
$grouped[] = $myrow['gperm_itemid'];
}
}
$non_grouped = array_diff($bids, $grouped);
if (!empty($non_grouped)) {
$sql = "SELECT b.* FROM " . $this->db->prefix('newblocks') . " b, " . $this->db->prefix('block_module_link') . " m WHERE m.block_id=b.bid";
$sql .= " AND b.isactive='" . (int) $isactive . "'";
if (isset($visible)) {
$sql .= " AND b.visible='" . (int) $visible . "'";
}
$module_id = (int) $module_id;
if (!empty($module_id)) {
$sql .= " AND m.module_id IN ('0', '" . (int) $module_id . "'";
if ($toponlyblock) {
$sql .= ",'-1'";
}
$sql .= ")";
} else {
if ($toponlyblock) {
$sql .= " AND m.module_id IN ('0', '-1')";
} else {
$sql .= " AND m.module_id='0'";
}
}
$sql .= " AND b.bid IN (" . implode(',', $non_grouped) . ")";
$sql .= " ORDER BY " . $orderby;
$result = $this->db->query($sql);
if ($this->db->getRowsNum($result) > 0) {
unset($blockids);
while ($myrow = $this->db->fetchArray($result)) {
$blockids[] = $myrow['bid'];
}
$ret = $this->getMultiple($blockids);
}
}
return $ret;
}
public function insert(&$obj, $force = false, $checkObject = true, $debug = false) {
$new = $obj->isNew();
$obj->setVar('last_modified', time());
$obj->setVar('isactive', true);
if (!$new) {
$sql = sprintf("DELETE FROM %s WHERE block_id = '%u'", $this->db->prefix('block_module_link'), (int) $obj->getVar('bid'));
if (false != $force) {
$this->db->queryF($sql);
} else {
$this->db->query($sql);
}
} else {
icms_loadLanguageFile('system', 'blocksadmin', true);
if ($obj->getVar('block_type') == 'K') {
$obj->setVar('name', _AM_CLONE);
} else {
switch ($obj->getVar('c_type')) {
case 'H':
$obj->setVar('name', _AM_CUSTOMHTML);
break;
case 'P':
$obj->setVar('name', _AM_CUSTOMPHP);
break;
case 'S':
$obj->setVar('name', _AM_CUSTOMSMILE);
break;
case 'T':
$obj->setVar('name', _AM_CUSTOMNOSMILE);
break;
default:
break;
}
}
}
$status = parent::insert($obj, $force, $checkObject, $debug);
$page = $obj->getVar('visiblein', 'e');
if (!empty($page)) {
if (is_array($obj->getVar('visiblein', 'e'))) {
foreach ($obj->getVar('visiblein', 'e') as $bmid) {
$page = explode('-', $bmid);
$mid = $page[0];
$pageid = $page[1];
$sql = "INSERT INTO " . $this->db->prefix('block_module_link') . " (block_id, module_id, page_id) VALUES ('" . (int) $obj->getVar("bid") . "', '" . (int) $mid . "', '" . (int) $pageid . "')";
if (false != $force) {
$this->db->queryF($sql);
} else {
$this->db->query($sql);
}
}
} else {
$page = explode('-', $obj->getVar('visiblein', 'e'));
$mid = $page[0];
$pageid = $page[1];
$sql = "INSERT INTO " . $this->db->prefix('block_module_link') . " (block_id, module_id, page_id) VALUES ('" . (int) $obj->getVar("bid") . "', '" . (int) $mid . "', '" . (int) $pageid . "')";
if (false != $force) {
$this->db->queryF($sql);
} else {
$this->db->query($sql);
}
}
}
return $status;
}
public function &get($id, $as_object = true, $debug = false, $criteria = false) {
$obj = parent::get($id, $as_object, $debug, $criteria);
$sql = "SELECT module_id, page_id FROM " . $this->db->prefix('block_module_link') . " WHERE block_id='" . (int) $obj->getVar('bid') . "'";
$result = $this->db->query($sql);
$modules = $bcustomp = array();
while ($row = $this->db->fetchArray($result)) {
$modules[] = (int) $row['module_id'] . '-' . (int) $row['page_id'];
}
$obj->setVar('visiblein', $modules);
return $obj;
}
private function &getMultiple($blockids) {
$criteria = new icms_db_criteria_Compo();
$criteria->add(new icms_db_criteria_Item('bid', '(' . implode(',', $blockids) . ')', 'IN'));
$criteria->setSort('weight');
$ret = $this->getObjects($criteria, true, true);
$sql = "SELECT block_id, module_id, page_id FROM " . $this->db->prefix('block_module_link') . " WHERE block_id IN (" . implode(',', array_keys($ret)) . ") ORDER BY block_id";
$result = $this->db->query($sql);
$modules = array();
$last_block_id = 0;
while ($row = $this->db->fetchArray($result)) {
$modules[] = (int) ($row['module_id']) . '-' . (int) ($row['page_id']);
$ret[$row['block_id']]->setVar('visiblein', $modules);
if ($row['block_id'] != $last_block_id) $modules = array();
$last_block_id = $row['block_id'];
}
return $ret;
}
public function getCountSimilarBlocks($moduleId, $funcNum, $showFunc = null) {
$funcNum = (int) $funcNum;
$moduleId = (int) $moduleId;
if ($funcNum < 1 || $moduleId < 1) {
return 0;
}
$criteria = new icms_db_criteria_Compo();
if (isset($showFunc)) {
$criteria->add(new icms_db_criteria_Item('mid', $moduleId));
$criteria->add(new icms_db_criteria_Item('func_num', $funcNum));
$criteria->add(new icms_db_criteria_Item('show_func', $showFunc));
} else {
$criteria->add(new icms_db_criteria_Item('mid', $moduleId));
$criteria->add(new icms_db_criteria_Item('func_num', $funcNum));
}
$count = $this->handler->getCount($criteria);
return $count;
}
public function getAllBlocksByGroup($groupid, $asobject = TRUE, $side = NULL, $visible = NULL, $orderby = "b.weight,b.bid", $isactive = 1) {
$ret = array();
if (!$asobject) {
$sql = "SELECT b.bid ";
} else {
$sql = "SELECT b.* ";
}
$sql .= "FROM " . $this->db->prefix("newblocks") . " b LEFT JOIN " . $this->db->prefix("group_permission") . " l ON l.gperm_itemid=b.bid WHERE gperm_name = 'block_read' AND gperm_modid = '1'";
if (is_array($groupid)) {
$sql .= " AND (l.gperm_groupid='" . (int) $groupid[0] . "'";
$size = count($groupid);
if ($size > 1) {
for ($i = 1; $i < $size; $i++ ) {
$sql .= " OR l.gperm_groupid='" . (int) $groupid[$i] . "'";
}
}
$sql .= ")";
} else {
$sql .= " AND l.gperm_groupid='" . (int) $groupid . "'";
}
$sql .= " AND b.isactive='" . (int) $isactive . "'";
if (isset($side)) {
$tp = ($side == -2) ? 'L' : (($side == -6) ? 'C' : '');
if ($tp != '') {
$side = "";
$s1 = "SELECT id FROM " . $this->db->prefix('block_positions') . " WHERE block_type='" . $tp . "' ORDER BY id ASC";
$res = $this->db->query($s1);
while ($myrow = $this->db->fetchArray($res)) {
$side .= "side='" . (int) $myrow['id'] . "' OR ";
}
$side = "('" . substr($side, 0, strlen($side) - 4) . "')";
} else {
$side = "side='" . (int) $side . "'";
}
$where_query .= " AND '" . (int) $side . "'";
}
if (isset($visible)) {
$sql .= " AND b.visible='" . (int) $visible . "'";
}
$sql .= " ORDER BY $orderby";
$result = $this->db->query($sql);
$added = array();
while ($myrow = $this->db->fetchArray($result)) {
if (!in_array($myrow['bid'], $added)) {
if (!$asobject) {
$ret[] = $myrow['bid'];
} else {
$ret[] = $this->get($myrow['bid']);
}
array_push($added, $myrow['bid']);
}
}
return $ret;
}
}