* code for task #2562.

This commit is contained in:
Catouse
2016-04-22 11:30:46 +08:00
parent 7b15a503af
commit b820895a55
8 changed files with 96 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
<?php
/**
* The control file of tutorial module of ZenTaoPMS.
*
* @copyright Copyright 2009-2016 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
* @license ZPL (http://zpl.pub/page/zplv12.html)
* @author Hao Sun <sunhao@cnezsoft.com>
* @package tutorial
* @version $Id: control.php 5002 2013-07-03 08:25:39Z chencongzhi520@gmail.com $
* @link http://www.zentao.net
*/
class tutorial extends control
{
/**
* Start page
* @access public
* @return void
*/
public function start()
{
$this->display();
}
/**
* Index page
* @access public
* @return void
*/
public function index()
{
$this->display();
}
}