Files
EasySoft-ZenTaoPMS/module/misc/control.php
2011-06-23 08:59:18 +00:00

59 lines
1.2 KiB
PHP

<?php
/**
* The control file of misc of ZenTaoPMS.
*
* @copyright Copyright 2009-2011 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
* @package misc
* @version $Id$
* @link http://www.zentao.net
*/
class misc extends control
{
/**
* Ping the server every 5 minutes to keep the session.
*
* @access public
* @return void
*/
public function ping()
{
if(mt_rand(0, 10) == 5) $this->loadModel('setting')->setSN();
die("<html><head><meta http-equiv='refresh' content='300' /></head><body></body></html>");
}
/**
* Show php info.
*
* @access public
* @return void
*/
public function phpinfo()
{
die(phpinfo());
}
/**
* Show about info of zentao.
*
* @access public
* @return void
*/
public function about()
{
die($this->display());
}
/**
* Update nl.
*
* @access public
* @return void
*/
public function updateNL()
{
$this->loadModel('upgrade')->updateNL();
}
}