<?php /* * This file is part of Web Instant Messenger project. * * Copyright (c) 2005-2009 Web Messenger Community * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Evgeny Gryaznov - initial API and implementation */ require_once("inc_menu.php"); $page['title'] = getlocal("updates.title"); $page['menuid'] = "updates"; function tpl_header() { global $page, $webimroot; ?> <script type="text/javascript" language="javascript" src="<?php echo $webimroot ?>/js/jquery-1.3.2.min.js"></script> <script type="text/javascript" language="javascript" src="http://openwebim.org/latestWebim.js"></script> <script type="text/javascript" language="javascript" src="<?php echo $webimroot ?>/js/update.js"></script> <?php } function tpl_content() { global $page, $webimroot; ?> <?php echo getlocal("updates.intro") ?> <br /> <br /> <div> <div class="mform"><div class="formtop"><div class="formtopi"></div></div><div class="forminner"> News:<br/> <div id="news"> </div> You are using:<br/> <div id="cver"><?php echo $page['version'] ?></div> <br/> Latest version: <div id="lver"></div> <br/> Installed localizations:<br/> <?php foreach( $page['localizations'] as $loc ) { ?> <?php echo $loc ?> <?php } ?> <br/><br/> Environment:<br/> PHP <?php echo $page['phpVersion'] ?> </div><div class="formbottom"><div class="formbottomi"></div></div></div> </div> <?php } /* content */ require_once('inc_main.php'); ?>