* Code for add langitem.html.php

This commit is contained in:
guofeilong
2023-02-13 16:56:34 +08:00
parent 77134627fc
commit b9d288fd23
8 changed files with 44 additions and 5 deletions
+16
View File
@@ -81,4 +81,20 @@ class dev extends control
$this->display();
}
/**
* LangItem.
*
* @access public
* @return void
*/
public function langItem()
{
$this->view->title = $this->lang->langItem;
$this->view->position[] = $this->lang->langItem;
$this->view->tab = 'langItem';
$this->display();
}
}
+17
View File
@@ -0,0 +1,17 @@
<?php
/**
* * The editor view file of dev module of ZenTaoPMS.
* *
* * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
* * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
* * @author Yidong Wang <yidong@cnezsoft.com>
* * @package dev
* * @version $Id$
* * @link http://www.zentao.net
* */
?>
<?php include 'header.html.php';?>
<div id='mainContent' class='main-content'>
</div>
<?php include '../../common/view/footer.html.php';?>