| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- /**
- * The config 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 configEntry extends baseEntry
- {
- /**
- * GET method.
- *
- * @param int $name language,version,timezone etc.
- * @access public
- * @return string
- */
- public function get($name)
- {
- $config = array('name' => $name);
- switch($name)
- {
- case 'language':
- $config['value'] = $this->config->default->lang;
- break;
- case 'version':
- $config['value'] = $this->config->version;
- break;
- case 'charset':
- $config['value'] = $this->config->charset;
- break;
- case 'timezone':
- $config['value'] = $this->config->timezone;
- break;
- case 'systemMode':
- $config['value'] = $this->config->systemMode;
- break;
- default:
- return $this->sendError(400, 'No configuration.');
- }
- return $this->send(200, $config);
- }
- }
|