93 lines
3.0 KiB
PHP
93 lines
3.0 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
/**
|
|
* The ajaxgetdropmenu view file of project module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2023 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
|
* @author Sun Guangming<sunguangming@easycorp.ltd>
|
|
* @package project
|
|
* @version $Id
|
|
* @link https://www.zentao.net
|
|
*/
|
|
namespace zin;
|
|
|
|
/**
|
|
* 获取项目所属分组。
|
|
* Get project group.
|
|
*
|
|
* @param object $project
|
|
* @return string
|
|
*/
|
|
$getProjectGroup = function($project): string
|
|
{
|
|
global $app;
|
|
if($project->status != 'done' and $project->status != 'closed' and $project->PM == $app->user->account) return 'my';
|
|
if($project->status != 'done' and $project->status != 'closed' and $project->PM != $app->user->account) return 'other';
|
|
return 'closed';
|
|
};
|
|
|
|
/**
|
|
* 定义每个分组下的选项数据列表。
|
|
* Define the grouped data list.
|
|
*/
|
|
$data = array('my' => array(), 'other' => array(), 'closed' => array());
|
|
|
|
/* 处理分组数据。Process grouped data. */
|
|
foreach($projects as $programID => $programProjects)
|
|
{
|
|
$programID = isset($programs[$programID]) ? $programID : 0;
|
|
|
|
$programItem = array();
|
|
$programItem['id'] = $programID;
|
|
$programItem['type'] = 'program';
|
|
$programItem['text'] = isset($programs[$programID]) ? zget($programs, $programID) : $lang->project->emptyProgram;
|
|
$programItem['items'] = array();
|
|
|
|
if(!$programID) $programItem['label'] = '';
|
|
|
|
foreach($programProjects as $index => $project)
|
|
{
|
|
$group = $getProjectGroup($project);
|
|
|
|
$item = array();
|
|
$item['id'] = $project->id;
|
|
$item['text'] = $project->name;
|
|
$item['icon'] = $project->model == 'scrum' ? 'sprint' : $project->model;
|
|
$item['keys'] = zget(common::convert2Pinyin(array($project->name)), $project->name, '');
|
|
|
|
if(!isset($data[$group][$programID])) $data[$group][$programID] = $programItem;
|
|
$data[$group][$programID]['items'][] = $item;
|
|
}
|
|
}
|
|
|
|
/* 将分组数据转换为索引数组。Format grouped data to indexed array. */
|
|
foreach ($data as $key => $value) $data[$key] = array_values($value);
|
|
|
|
/**
|
|
* 定义每个分组名称信息,包括可展开的已关闭分组。
|
|
* Define every group name, include expanded group.
|
|
*/
|
|
$tabs = array();
|
|
$tabs[] = array('name' => 'my', 'text' => $lang->project->myProject);
|
|
$tabs[] = array('name' => 'other', 'text' => $lang->project->other);
|
|
$tabs[] = array('name' => 'closed', 'text' => $lang->project->closedProject);
|
|
|
|
/**
|
|
* 定义最终的 JSON 数据。
|
|
* Define the final json data.
|
|
*/
|
|
$json = array();
|
|
$json['data'] = $data;
|
|
$json['tabs'] = $tabs;
|
|
$json['searchHint'] = $lang->searchAB;
|
|
$json['link'] = array('project' => sprintf($link, '{id}'));
|
|
$json['labelMap'] = array('program' => $lang->program->common);
|
|
$json['expandName'] = 'closed';
|
|
$json['itemType'] = 'project';
|
|
|
|
/**
|
|
* 渲染 JSON 字符串并发送到客户端。
|
|
* Render json data to string and send to client.
|
|
*/
|
|
renderJson($json);
|