| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- /**
- * The modules 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 modulesEntry extends entry
- {
- /**
- * Get method.
- *
- * @access public
- * @return string
- */
- public function get()
- {
- $objectType = $this->param('type', '');
- $objectID = $this->param('id', '');
- if(!$objectType or !$objectID) return $this->sendError(400, 'Need id and type.');
- if(!in_array($objectType, array('story', 'task', 'bug', 'case', 'feedback', 'product'))) return $this->sendError(400, 'Type is not allowed');
- if($objectType == 'task')
- {
- $control = $this->loadController('tree', 'browsetask');
- $control->browseTask($objectID);
- }
- else
- {
- $control = $this->loadController('tree', 'browse');
- $control->browse($objectID, $objectType);
- }
- $data = $this->getData();
- if(isset($data->status) and $data->status == 'success') return $this->send(200, array('modules' => $data->data->tree));
- return $this->send400(isset($data->message) ? $data->message: 'error');
- }
- }
|