mirror of
				https://github.com/Mibew/java.git
				synced 2025-11-04 04:15:11 +03:00 
			
		
		
		
	git-svn-id: https://webim.svn.sourceforge.net/svnroot/webim/trunk@402 c66351dc-e62f-0410-b875-e3a5c0b9693f
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?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'] = "settings";
 | 
						|
 | 
						|
function tpl_content() { global $page, $webimroot;
 | 
						|
?>
 | 
						|
 | 
						|
<?php echo getlocal("updates.intro") ?>
 | 
						|
<br />
 | 
						|
<br />
 | 
						|
<div>
 | 
						|
<?php if($page['tabs']) { ?>
 | 
						|
	<ul class="tabs">
 | 
						|
 | 
						|
<?php foreach($page['tabs'] as $k => $v) { if($v) { ?>
 | 
						|
	<li><a href="<?php echo $v ?>"><?php echo $k ?></a></li>
 | 
						|
<?php } else { ?>
 | 
						|
	<li class="active"><a href="#"><?php echo $k ?></a></li><?php }} ?>
 | 
						|
	</ul>
 | 
						|
<?php } ?>
 | 
						|
	<div class="mform"><div class="formtop"><div class="formtopi"></div></div><div class="forminner">
 | 
						|
 | 
						|
		You are using:<br/>
 | 
						|
			«<span style="color:#bb5500;">Open</span> Web Messenger» <?php echo $page['version'] ?>
 | 
						|
			
 | 
						|
		<br/><br/>
 | 
						|
			
 | 
						|
		Installed localizations:<br/>
 | 
						|
			<?php foreach( $page['localizations'] as $loc ) { ?>
 | 
						|
				<?php echo $loc ?>
 | 
						|
			<?php } ?>
 | 
						|
		
 | 
						|
		<br/><br/>	
 | 
						|
		
 | 
						|
		Environment:<br/>
 | 
						|
			PHP <?php echo $page['phpVersion'] ?>
 | 
						|
			
 | 
						|
		<br/>
 | 
						|
	
 | 
						|
	</div><div class="formbottom"><div class="formbottomi"></div></div></div>
 | 
						|
</div>		
 | 
						|
 | 
						|
<?php 
 | 
						|
} /* content */
 | 
						|
 | 
						|
require_once('inc_main.php');
 | 
						|
?>
 |