| 123456789101112131415161718192021222324 |
- <?php
- /**
- * The control file of dataview module of ZenTaoPMS.
- *
- * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
- * @license ZPL (http://zpl.pub/page/zplv12.html)
- * @author Chunsheng Wang <chunsheng@cnezsoft.com>
- * @package dept
- * @version $Id: control.php 4157 2013-01-20 07:09:42Z wwccss $
- * @link https://www.zentao.net
- */
- class dataview extends control
- {
- /**
- * @param string $moduleName
- * @param string $methodName
- * @param string $appName
- */
- public function __construct($moduleName = '', $methodName = '', $appName = '')
- {
- parent::__construct($moduleName, $methodName, $appName);
- $this->dao->exec("SET @@sql_mode=''");
- }
- }
|