Source for file page_loader.php
Documentation is available at page_loader.php
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
* Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
include_once( '../../kernel/setup_inc.php' );
include_once (HTML_PKG_PATH. 'htmlpages_lib.php');
$refresh = 1000 * $_REQUEST["refresh"];
<script language = 'Javascript' type = 'text/javascript'>
$zones = $htmlpageslib->list_html_page_content($_REQUEST["title"], 0, - 1, 'zone_asc', '');
for ($i = 0; $i < count($zones["data"]); $i++ ) {
$cmd = 'top.document.getElementById("' . $zones["data"][$i]["zone"] . '").innerHTML="' . $zones["data"][$i]["content"] . '";';
<body onLoad = "window.setInterval('location.reload()',' <?php echo $refresh ?>');">
|