Files
EasySoft-ZenTaoPMS/module/misc/model.php
2015-01-28 15:14:02 +08:00

21 lines
580 B
PHP

<?php
/**
* The model file of misc module of ZenTaoPMS.
*
* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
* @license ZPL (http://zpl.pub/page/zplv11.html)
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
* @package misc
* @version $Id: model.php 4129 2013-01-18 01:58:14Z wwccss $
* @link http://www.zentao.net
*/
?>
<?php
class miscModel extends model
{
public function hello()
{
return 'hello world from hello()<br />';
}
}