看板初始化提交

This commit is contained in:
zephyr
2026-06-01 21:23:12 -07:00
commit 54a842f4ab
2104 changed files with 241695 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
<?php use Kanboard\Core\Security\Role; ?>
<form method="post" action="<?= $this->url->href('CommentController', 'save', array('task_id' => $task['id'])) ?>" autocomplete="off">
<?= $this->form->csrf() ?>
<?= $this->form->hidden('task_id', $values) ?>
<?= $this->form->hidden('user_id', $values) ?>
<?= $this->form->textEditor('comment', $values, $errors, array('required' => true, 'aria-label' => t('New comment'))) ?>
<?php
$formName = 'visibility';
$visibilityOptions['app-user'] = t('Standard users');
$attribute[] = ('hidden');
?>
<?php if ($this->user->getRole() !== Role::APP_USER) {
echo $this->form->label(t('Visibility:'), $formName);
$attribute = [];
$visibilityOptions['app-user'] = t('Standard users');
$visibilityOptions['app-manager'] = t('Application managers or more');
}
?>
<?php if ($this->user->getRole() === Role::APP_ADMIN) {
$visibilityOptions['app-admin'] = t('Administrators');
}
?>
<?= $this->form->select($formName, $visibilityOptions, array(), array(), $attribute) ?>
<?= $this->modal->submitButtons() ?>
</form>
+39
View File
@@ -0,0 +1,39 @@
<details class="accordion-section" <?= empty($comments) ? '' : 'open' ?>>
<summary class="accordion-title"><?= t('Comments') ?></summary>
<div class="accordion-content comments" id="comments">
<?php if (!isset($is_public) || !$is_public): ?>
<div class="comment-sorting">
<small>
<?php if ($editable): ?>
<?= $this->modal->medium('comment', t('Add a comment'), 'CommentController', 'create', array('task_id' => $task['id'])) ?>
<?php endif ?>
<?= $this->url->icon('sort', t('Change sorting'), 'CommentController', 'toggleSorting', array('task_id' => $task['id'], 'csrf_token' => $this->app->getToken()->getReusableCSRFToken())) ?>
<?php if ($editable): ?>
<?= $this->modal->medium('paper-plane', t('Send by email'), 'CommentMailController', 'create', array('task_id' => $task['id'])) ?>
<?php endif ?>
</small>
</div>
<?php endif ?>
<?php foreach ($comments as $comment): ?>
<?= $this->render('comment/show', array(
'comment' => $comment,
'task' => $task,
'project' => $project,
'editable' => $editable,
'is_public' => isset($is_public) && $is_public,
)) ?>
<?php endforeach ?>
<?php if ($editable): ?>
<?= $this->render('task_comments/create', array(
'values' => array(
'user_id' => $this->user->getId(),
'task_id' => $task['id'],
'project_id' => $task['project_id'],
),
'errors' => array(),
'task' => $task,
)) ?>
<?php endif ?>
</div>
</details>