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:
<?php
defined('ICMS_ROOT_PATH') or exit();
class icms_view_PageBuilder {
public $theme = FALSE;
public $blocks = array();
private $uagroups = array();
static private $modid;
public function xoInit($options = array()) {
$this->retrieveBlocks();
if ($this->theme) {
$this->theme->template->assign_by_ref('xoBlocks', $this->blocks);
}
return TRUE;
}
public function preRender($zone = '') { }
public function postRender($zone = '') { }
public function retrieveBlocks() {
global $xoops, $icmsModule, $icmsConfig;
$groups = is_object(icms::$user) ? icms::$user->getGroups() : array(ICMS_GROUP_ANONYMOUS);
self::getPage();
$modid = self::$modid['module'] . '-' . self::$modid['page'];
$isStart = self::$modid['isStart'];
$icms_block_handler = icms::handler('icms_view_block');
$oldzones = $icms_block_handler->getBlockPositions();
foreach ($oldzones as $zone) {
$this->blocks[$zone] = array();
}
if ($this->theme) {
$template =& $this->theme->template;
$backup = array($template->caching, $template->cache_lifetime);
} else {
$template = new icms_view_Tpl();
}
$gperm = icms::handler('icms_member_groupperm');
$ugroups = @is_object(icms::$user) ? icms::$user->getGroups() : array(ICMS_GROUP_ANONYMOUS);
$agroups = $gperm->getGroupIds('system_admin', 5);
$this->uagroups = array_intersect($ugroups, $agroups);
$block_arr = $icms_block_handler->getAllByGroupModule($groups, $modid, $isStart, XOOPS_BLOCK_VISIBLE);
$tplfile_handler = icms::handler('icms_view_template_file');
$tplfile_handler->prefetchBlocks($block_arr);
foreach ($block_arr as $block) {
$side = $oldzones[$block->getVar('side', 'n')];
if ($var = $this->buildBlock($block, $template)) {
$this->blocks[$side][$var["id"]] = $var;
}
}
if ($this->theme) {
list($template->caching, $template->cache_lifetime) = $backup;
}
}
static public function getPage() {
global $icmsConfig, $icmsModule;
if (is_array(self::$modid)) return self::$modid;
if (is_array($icmsConfig['startpage'])) {
$member_handler = icms::handler('icms_member');
$group = $member_handler->getUserBestGroup((is_object(icms::$user) ? icms::$user->getVar('uid') : 0));
$icmsConfig['startpage'] = $icmsConfig['startpage'][$group];
}
$startMod = ($icmsConfig['startpage'] == '--') ? 'system' : $icmsConfig['startpage'];
$clean_request = filter_var($_SERVER['REQUEST_URI'], FILTER_SANITIZE_URL);
$fullurl = icms::$urls['http'] . icms::$urls['httphost'] . $clean_request;
$url = substr(str_replace(ICMS_URL, '', $fullurl), 1);
$icms_page_handler = icms::handler('icms_data_page');
$criteria = new icms_db_criteria_Compo(new icms_db_criteria_Item('page_url', $fullurl));
if (!empty($url)) $criteria->add(new icms_db_criteria_Item('page_url', $url), 'OR');
$pages = $icms_page_handler->getCount($criteria);
if ($pages > 0) {
$pages = $icms_page_handler->getObjects($criteria);
$page = $pages[0];
$purl = filter_var($page->getVar('page_url'), FILTER_SANITIZE_URL);
$mid = (int) $page->getVar('page_moduleid');
$pid = $page->getVar('page_id');
$module_handler = icms::handler('icms_module');
$module = $module_handler->get($mid);
$dirname = $module->getVar('dirname');
$isStart = ($startMod == $mid.'-'.$pid);
} else {
if (is_object($icmsModule)) {
$mid = (int) $icmsModule->getVar('mid');
$dirname = $icmsModule->getVar('dirname');
$isStart = (substr($_SERVER['PHP_SELF'], -9) == 'index.php' && $startMod == $dirname);
} else {
$mid = 1;
$dirname = 'system';
$isStart = !empty($GLOBALS['xoopsOption']['show_cblock']);
}
$pid = 0;
}
if ($isStart) {
self::$modid = array('module' => 0, 'page' => 1, 'isStart' => $isStart);
} else {
$criteria = new icms_db_criteria_Compo(new icms_db_criteria_Item('page_status', 1));
$pages = $icms_page_handler->getObjects($criteria);
$pid = 0;
foreach ($pages as $page) {
$purl = filter_var($page->getVar('page_url'), FILTER_SANITIZE_URL);
if (substr($purl, -1) == '*') {
$purl = substr($purl, 0, -1);
if (substr($url, 0, strlen($purl)) == $purl || substr($fullurl, 0, strlen($purl)) == $purl) {
$pid = $page->getVar('page_id');
break;
}
} else {
if ($purl == $url || $purl == $fullurl) {
$pid = $page->getVar('page_id');
break;
}
}
}
self::$modid = array('module' => $mid, 'page' => $pid, 'isStart' => $isStart);
}
return self::$modid;
}
public function generateCacheId($cache_id) {
if ($this->theme) {
$cache_id = $this->theme->generateCacheId($cache_id);
}
return $cache_id;
}
public function buildBlock($xobject, &$template) {
global $icmsConfigPersona;
$bid = $xobject->getVar('bid');
if ($icmsConfigPersona['editre_block'] == TRUE) {
if (icms::$user && count($this->uagroups) > 0) {
$url = base64_encode(str_replace(ICMS_URL, '', icms::$urls['http'] . $_SERVER['HTTP_HOST'] . filter_var($_SERVER['REQUEST_URI'], FILTER_SANITIZE_URL)));
$titlebtns = ' <a href="#" onclick="$(\'#ed_block_' . $bid . '\').dialog(\'open\'); return false;"><img src="' . ICMS_IMAGES_SET_URL . '/actions/configure.png" title="' . _EDIT .' '. _BLOCK_ID .' '. $bid .'" alt="' . _EDIT . '" /></a>'
. '<button style="display: none;"><div id="ed_block_' . $bid . '">'
. "<a href='" . ICMS_MODULES_URL . "/system/admin.php?fct=blocksadmin&op=visible&bid=" . $bid . "&rtn=$url'> <img src='" . ICMS_IMAGES_SET_URL . "/actions/button_cancel.png' alt='" . _INVISIBLE . "' /> " . _INVISIBLE . "</a><br />"
. "<a href='" . ICMS_MODULES_URL . "/system/admin.php?fct=blocksadmin&op=clone&bid=" . $bid . "'> <img src='" . ICMS_IMAGES_SET_URL . "/actions/editcopy.png' alt='" . _CLONE . "' /> " . _CLONE . "</a><br />"
. "<a href='" . ICMS_MODULES_URL . "/system/admin.php?fct=blocksadmin&op=mod&bid=" . $bid . "'> <img src='" . ICMS_IMAGES_SET_URL . "/actions/edit.png' alt='" . _EDIT . "' /> " . _EDIT . "</a><br />"
. "<a href='" . ICMS_MODULES_URL . "/system/admin.php?fct=blocksadmin&op=up&bid=" . $bid . "&rtn=$url'> <img src='" . ICMS_IMAGES_SET_URL . "/actions/up.png' alt='" . _UP . "' /> " . _UP . "</a><br />"
. "<a href='" . ICMS_MODULES_URL . "/system/admin.php?fct=blocksadmin&op=down&bid=" . $bid . "&rtn=$url'> <img src='" . ICMS_IMAGES_SET_URL . "/actions/down.png' alt='" . _DOWN . "' /> " . _DOWN . "</a>";
if ($xobject->getVar('dirname') == '') {
$titlebtns .= "<br /><a href='" . ICMS_MODULES_URL . "/system/admin.php?fct=blocksadmin&op=del&bid=" . $bid . "'> <img src='" . ICMS_IMAGES_SET_URL . "/actions/editdelete.png' alt='" . _DELETE . "' /> " . _DELETE . "</a>";
}
$titlebtns .= '</div></button>';
$titlebtns .= '<script type="text/javascript">
$(function() {
$(\'#ed_block_' . $bid . '\').dialog({
bgiframe: true,
//height: 140,
autoOpen: false,
modal: true
});
});
</script>
';
} else {
$titlebtns = '';
}
} else {
$titlebtns = '';
}
$block = array(
'id' => $bid,
'module' => $xobject->getVar('dirname'),
'title' => $xobject->getVar('title') . $titlebtns,
'weight' => $xobject->getVar('weight'),
'lastmod' => $xobject->getVar('last_modified')
);
$bcachetime = (int) ($xobject->getVar('bcachetime'));
if (empty($bcachetime)) {
$template->caching = 0;
} else {
$template->caching = 2;
$template->cache_lifetime = $bcachetime;
}
$tplName = ($tplName = $xobject->getVar('template')) ? "db:$tplName" : "db:system_block_dummy.html";
$cacheid = $this->generateCacheId(
'blk_' . $xobject->getVar('dirname', 'n') . '_'
. $bid
);
if (! $bcachetime || ! $template->is_cached($tplName, $cacheid)) {
icms::$logger->addBlock($xobject->getVar('name'));
if (! ($bresult = $xobject->buildBlock())) {
return FALSE;
}
$template->assign('block', $bresult);
$block['content'] = $template->fetch($tplName, $cacheid);
} else {
icms::$logger->addBlock($xobject->getVar('name'), TRUE, $bcachetime);
$block['content'] = $template->fetch($tplName, $cacheid);
}
return $block;
}
}