Files
EasySoft-ZenTaoPMS/module/entry/control.php
2021-05-12 16:03:12 +08:00

139 lines
5.0 KiB
PHP

<?php
/**
* The control file of entry module of ZenTaoPMS.
*
* @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
* @license ZPL (http://zpl.pub/page/zplv12.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()) $this->send(array('result' => 'fail', 'message' => dao::getError()));
$this->loadModel('action')->create('entry', $id, 'created');
if($this->viewType == 'json') $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'id' => $id));
$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()) $this->send(array('result' => 'fail', 'message' => dao::getError()));
if($changes)
{
$actionID = $this->loadModel('action')->create('entry', $id, 'edited');
$this->action->logHistory($actionID, $changes);
}
$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()) $this->send(array('result' => 'fail', 'message' => dao::getError()));
$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->getLogList($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();
}
}