summaryrefslogtreecommitdiff
path: root/app/Template/board/table_container.php
blob: b20426a65e23f8e7451e11d6f719a8b6154341bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<div id="board-container">
    <?php if (isset($not_editable)): ?>
        <table id="board" class="board-project-<?= $project['id'] ?>">
    <?php else: ?>
        <table id="board"
               class="board-project-<?= $project['id'] ?>"
               data-project-id="<?= $project['id'] ?>"
               data-check-interval="<?= $board_private_refresh_interval ?>"
               data-save-url="<?= $this->url->href('board', 'save', array('project_id' => $project['id'])) ?>"
               data-reload-url="<?= $this->url->href('board', 'reload', array('project_id' => $project['id'])) ?>"
               data-check-url="<?= $this->url->href('board', 'check', array('project_id' => $project['id'], 'timestamp' => time())) ?>"
               data-task-creation-url="<?= $this->url->href('taskcreation', 'create', array('project_id' => $project['id'])) ?>"
        >
    <?php endif ?>

    <?php $nb_swimlanes = count($swimlanes) ?>
    <?php foreach ($swimlanes as $index => $swimlane): ?>
        <?php if (empty($swimlane['columns'])): ?>
            <p class="alert alert-error"><?= t('There is no column in your project!') ?></p>
            <?php break ?>
        <?php else: ?>
            <?php if ($index === 0): ?>
                <?= $this->render('board/table_column', array(
                    'swimlane' => $swimlane,
                    'not_editable' => isset($not_editable),
                )) ?>
            <?php endif ?>

            <?php if ($nb_swimlanes > 1): ?>
                <?= $this->render('board/table_swimlane', array(
                    'project' => $project,
                    'swimlane' => $swimlane,
                    'not_editable' => isset($not_editable),
                )) ?>
            <?php endif ?>

            <?= $this->render('board/table_tasks', array(
                'project' => $project,
                'swimlane' => $swimlane,
                'not_editable' => isset($not_editable),
                'board_highlight_period' => $board_highlight_period,
            )) ?>

        <?php endif ?>
    <?php endforeach ?>
    </table>
</div>