+ import from my local subversion server.

This commit is contained in:
wangchunsheng
2009-10-25 12:27:50 +00:00
parent ccb087be8f
commit e00d2da155
200 changed files with 18911 additions and 0 deletions

113
module/company/control.php Normal file
View File

@@ -0,0 +1,113 @@
<?php
/**
* The control file of company module of ZenTaoMS.
*
* ZenTaoMS is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ZenTaoMS is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with ZenTaoMS. If not, see <http://www.gnu.org/licenses/>.
*
* @copyright Copyright: 2009 Chunsheng Wang
* @author Chunsheng Wang <wwccss@263.net>
* @package company
* @version $Id: control.php 1363 2009-09-29 01:19:26Z wwccss $
* @link http://www.zentao.cn
*/
class company extends control
{
/* 构造函数。*/
public function __construct()
{
parent::__construct();
$this->loadModel('admin');
$this->loadModel('dept');
$this->app->loadLang('user');
}
/* 公司首页。*/
public function index()
{
$this->locate($this->createLink('company', 'browse'));
}
/* 浏览某一个公司。*/
public function browse($deptID = 0)
{
$this->lang->set('menugroup.company', 'company');
$childDeptIds = $this->dept->getAllChildID($deptID);
$header['title'] = $this->lang->company->index . $this->lang->colon . $this->lang->dept->common;
$position[] = $this->lang->dept->common;
$this->assign('header', $header);
$this->assign('position', $position);
$this->assign('users', $this->dept->getUsers($childDeptIds));
$this->assign('deptTree', $this->dept->getTreeMenu($rooteDeptID = 0, array('deptModel', 'createMemberLink')));
$this->assign('parentDepts', $this->dept->getParents($deptID));
$this->display();
}
/* 新增一个公司。*/
public function create()
{
if(!empty($_POST))
{
$this->company->create();
die(js::locate($this->createLink('admin', 'browsecompany'), 'parent'));
}
$this->lang->set('menugroup.company', 'admin');
$header['title'] = $this->lang->admin->common . $this->lang->colon . $this->lang->company->create;
$position[] = html::a($this->createLink('admin', 'browsecompany'), $this->lang->admin->company);
$position[] = $this->lang->company->create;
$this->assign('header', $header);
$this->assign('position', $position);
$this->display();
}
/* 编辑一个公司。*/
public function edit($companyID)
{
if(!empty($_POST))
{
$this->company->update($companyID);
die(js::locate($this->createLink('admin', 'browsecompany'), 'parent'));
}
$this->lang->set('menugroup.company', 'admin');
$header['title'] = $this->lang->admin->common . $this->lang->colon . $this->lang->company->edit;
$position[] = html::a($this->createLink('admin', 'browsecompany'), $this->lang->admin->company);
$position[] = $this->lang->company->edit;
$this->assign('header', $header);
$this->assign('position', $position);
$this->assign('company', $this->company->getById($companyID));
$this->display();
}
/* 删除公司。*/
public function delete($companyID, $confirm = 'no')
{
if($confirm == 'no')
{
echo js::confirm($this->lang->company->confirmDelete, $this->createLink('company', 'delete', "companyID=$companyID&confirm=yes"));
exit;
}
else
{
$this->company->delete($companyID);
echo js::locate($this->createLink('admin', 'browseCompany'), 'parent');
exit;
}
}
}