zentaopms/module/entry/control.php
2023-05-16 10:47:08 +08:00

139 lines
5.1 KiB
PHP

<?php
/**
* The control file of entry module of ZenTaoPMS.
*
* @copyright Copyright 2009-2017 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) 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 Gang Liu <liugang@cnezsoft.com>
* @package entry
* @version $Id$
* @link http://www.zentao.net
*/
class entry extends control
{
/**
* Browse entries.
*
* @param string $orderBy
* @param int $recTotal
* @param int $recPerPage
* @param int $pageID
* @access public
* @return void
*/
public function browse($orderBy = 'id_desc', $recTotal = 0, $recPerPage = 10, $pageID = 1)
{
$pager = $this->app->loadClass('pager', $static = true);
$pager = new pager($recTotal, $recPerPage, $pageID);
$this->view->title = $this->lang->entry->common . $this->lang->colon . $this->lang->entry->list;
$this->view->entries = $this->entry->getList($orderBy, $pager);
$this->view->position[] = html::a(inlink('browse'), $this->lang->entry->api);
$this->view->position[] = $this->lang->entry->common;
$this->view->orderBy = $orderBy;
$this->view->pager = $pager;
$this->display();
}
/**
* Create an entry.
*
* @access public
* @return void
*/
public function create()
{
if($_POST)
{
$id = $this->entry->create();
if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError()));
$this->loadModel('action')->create('entry', $id, 'created');
if($this->viewType == 'json') return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'id' => $id));
return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'locate' => inlink('browse')));
}
$this->view->title = $this->lang->entry->common . $this->lang->colon . $this->lang->entry->create;
$this->view->users = $this->loadModel('user')->getPairs('nodeleted|noclosed');
$this->view->position[] = html::a(inlink('browse'), $this->lang->entry->api);
$this->view->position[] = html::a(inlink('browse'), $this->lang->entry->common);
$this->view->position[] = $this->lang->entry->create;
$this->display();
}
/**
* Edit an entry.
*
* @param int $id
* @access public
* @return void
*/
public function edit($id)
{
if($_POST)
{
$changes = $this->entry->update($id);
if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError()));
if($changes)
{
$actionID = $this->loadModel('action')->create('entry', $id, 'edited');
$this->action->logHistory($actionID, $changes);
}
return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'locate' => inlink('browse')));
}
$entry = $this->entry->getById($id);
$this->view->title = $this->lang->entry->edit . $this->lang->colon . $entry->name;
$this->view->users = $this->loadModel('user')->getPairs('nodeleted|noclosed');
$this->view->position[] = html::a(inlink('browse'), $this->lang->entry->api);
$this->view->position[] = html::a(inlink('browse'), $this->lang->entry->common);
$this->view->position[] = $this->lang->entry->edit;
$this->view->entry = $entry;
$this->display();
}
/**
* Delete an entry.
*
* @param int $id
* @access public
* @return void
*/
public function delete($id)
{
$this->entry->delete(TABLE_ENTRY, $id);
if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError()));
return $this->send(array('result' => 'success'));
}
/**
* Browse logs of an entry.
*
* @param int $id
* @param string $orderBy
* @param int $recTotal
* @param int $recPerPage
* @param int $pageID
* @access public
* @return void
*/
public function log($id, $orderBy = 'id_desc', $recTotal = 0, $recPerPage = 20, $pageID = 1)
{
$this->app->loadClass('pager', $static = true);
$pager = new pager($recTotal, $recPerPage, $pageID);
$entry = $this->entry->getByID($id);
$this->view->title = $this->lang->entry->log . $this->lang->colon . $entry->name;
$this->view->logs = $this->entry->getLogs($id, $orderBy, $pager);
$this->view->position[] = html::a(inlink('browse'), $this->lang->entry->api);
$this->view->position[] = html::a(inlink('browse'), $this->lang->entry->common);
$this->view->position[] = $this->lang->entry->log;
$this->view->entry = $entry;
$this->view->orderBy = $orderBy;
$this->view->pager = $pager;
$this->display();
}
}