71 lines
2.4 KiB
PHP
71 lines
2.4 KiB
PHP
<?php
|
|
/**
|
|
* The program entry point of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
|
* @license ZPL (http://zpl.pub/page/zplv12.html)
|
|
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package entries
|
|
* @version 1
|
|
* @link http://www.zentao.net
|
|
*/
|
|
class programEntry extends Entry
|
|
{
|
|
/**
|
|
* GET method.
|
|
*
|
|
* @param int $programID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function get($programID)
|
|
{
|
|
$program = $this->loadModel('program')->getByID($programID);
|
|
if(!$program) return $this->send404();
|
|
|
|
$this->send(200, $this->format($program, 'begin:date,end:date,PO:user,PM:user,QD:user,RD:user,realBegan:date,realEnd:date,openedBy:user,openedDate:time,lastEditedDate:time,closedBy:user,closedDate:time,canceledBy:user,canceledDate:time,deleted:bool,whitelist:userList'));
|
|
}
|
|
|
|
/**
|
|
* PUT method.
|
|
*
|
|
* @param int $programID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function put($programID)
|
|
{
|
|
$oldProgram = $this->loadModel('program')->getByID($programID);
|
|
|
|
/* Set $_POST variables. */
|
|
$fields = 'name,PM,budget,budgetUnit,desc,parent,begin,end,realBegan,realEnd,acl,whitelist';
|
|
$this->batchSetPost($fields, $oldProgram);
|
|
$this->setPost('parent', $this->request('parent', 0));
|
|
|
|
$control = $this->loadController('program', 'edit');
|
|
$control->edit($programID);
|
|
|
|
$this->getData();
|
|
$program = $this->program->getByID($programID);
|
|
$this->send(200, $this->format($program, 'begin:date,end:date,PO:user,PM:user,QD:user,RD:user,realBegan:date,realEnd:date,openedBy:user,openedDate:time,lastEditedDate:time,closedBy:user,closedDate:time,canceledBy:user,canceledDate:time,deleted:bool,whitelist:userList'));
|
|
}
|
|
|
|
/**
|
|
* DELETE method.
|
|
*
|
|
* @param int $programID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function delete($programID)
|
|
{
|
|
$control = $this->loadController('program', 'delete');
|
|
$control->delete(0, $programID, 'true');
|
|
|
|
$data = $this->getData();
|
|
if(isset($data->result) and $data->result == 'fail') return $this->sendError(400, $data->message);
|
|
|
|
$this->sendSuccess(200, 'success');
|
|
}
|
|
}
|