| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?php
- /**
- * The program entry point of ZenTaoPMS.
- *
- * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(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 Chunsheng Wang <chunsheng@cnezsoft.com>
- * @package entries
- * @version 1
- * @link https://www.zentao.net
- */
- class programEntry extends entry
- {
- /**
- * GET method.
- *
- * @param int $programID
- * @access public
- * @return string
- */
- public function get($programID)
- {
- $program = $this->loadModel('program')->getByID($programID);
- if(!$program) return $this->send404();
- return $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 string
- */
- public function put($programID)
- {
- $control = $this->loadController('program', 'edit');
- $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->edit($programID);
- $data = $this->getData();
- if(isset($data->result) and $data->result == 'fail') return $this->sendError(400, $data->message);
- $program = $this->program->getByID($programID);
- return $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 string
- */
- public function delete($programID)
- {
- $control = $this->loadController('program', 'delete');
- $control->delete($programID, 'true');
- $data = $this->getData();
- if(isset($data->result) and $data->result == 'fail') return $this->sendError(400, $data->message);
- return $this->sendSuccess(200, 'success');
- }
- }
|