50 lines
1.4 KiB
PHP
50 lines
1.4 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
/**
|
|
* The showsynccommit view file of repo 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 Ke Zhao<zhaoke@easycorp.ltd>
|
|
* @package repo
|
|
* @link http://www.zentao.net
|
|
*/
|
|
|
|
namespace zin;
|
|
|
|
\zin\featureBar();
|
|
|
|
if(empty($branch))
|
|
{
|
|
$link = helper::createLink('repo', 'ajaxSyncCommit', "repoID=$repoID");
|
|
}
|
|
else
|
|
{
|
|
$link = helper::createLink('repo', 'ajaxSyncBranchCommit', "repoID=$repoID&branch=" . helper::safe64Encode(base64_encode($branch)));
|
|
}
|
|
|
|
jsVar('link', $link);
|
|
jsVar('browseLink', $browseLink);
|
|
jsVar('syncComplete', $lang->repo->notice->syncComplete);
|
|
div
|
|
(
|
|
setClass('sync-main-content'),
|
|
div
|
|
(
|
|
set::className('sync-content'),
|
|
div
|
|
(
|
|
setClass('alert light-pale flex items-center'),
|
|
icon(setClass('icon icon-info-sign icon-2x alert-icon'), 'check-sign'),
|
|
div
|
|
(
|
|
h3($lang->repo->notice->syncing),
|
|
div(setClass('sync-line')),
|
|
$repo->SCM != 'Gitlab' ? p($lang->repo->notice->syncedCount, span($version, set::id('commits'))) : null
|
|
)
|
|
)
|
|
)
|
|
);
|
|
|
|
render();
|