* @package ZenTaoPMS * @version $Id: control.php 5036 2013-07-06 05:26:44Z wyd621@gmail.com $ * @link http://www.zentao.net */ class index extends control { /** * Construct function, load project, product. * * @access public * @return void */ public function __construct() { parent::__construct(); } /** * The index page of whole zentao system. * * @param string $open * @access public * @return void */ public function index($open = '') { $this->view->open = helper::safe64Decode($open); $this->view->title = $this->lang->index->common; $this->display(); } /** * Just test the extension engine. * * @access public * @return void */ public function testext() { echo $this->fetch('misc', 'getsid'); } }