| 123456789101112131415161718192021222324 |
- <?php
- /**
- * The view file of metric module of ZenTaoPMS.
- *
- * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
- * @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
- * @author zhouxin<zhouxin@easycorp.ltd>
- * @package metric
- * @link http://www.zentao.net
- */
- namespace zin;
- jsVar('confirmDelist', $lang->metric->confirmDelist);
- jsVar('confirmDelistInUsed', $lang->metric->confirmDelistInUsed);
- jsVar('confirmRecalculate', $lang->metric->confirmRecalculate);
- if($isOldMetric)
- {
- include 'viewsqlmetric.html.php';
- }
- else
- {
- include 'viewphpmetric.html.php';
- }
|