summaryrefslogtreecommitdiff
path: root/app/Templates/config_index.php
blob: 11662c8703a18e69f0031d46dc513490a6963c6c (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<section id="main">

    <?php if ($user['is_admin']): ?>
        <div class="page-header">
            <h2><?= t('Application settings') ?></h2>
        </div>
        <section>
        <form method="post" action="?controller=config&amp;action=save" autocomplete="off">

            <?= Helper\form_csrf() ?>

            <?= Helper\form_label(t('Language'), 'language') ?>
            <?= Helper\form_select('language', $languages, $values, $errors) ?><br/>

            <?= Helper\form_label(t('Timezone'), 'timezone') ?>
            <?= Helper\form_select('timezone', $timezones, $values, $errors) ?><br/>

            <?= Helper\form_label(t('Webhook URL for task creation'), 'webhooks_url_task_creation') ?>
            <?= Helper\form_text('webhooks_url_task_creation', $values, $errors) ?><br/>

            <?= Helper\form_label(t('Webhook URL for task modification'), 'webhooks_url_task_modification') ?>
            <?= Helper\form_text('webhooks_url_task_modification', $values, $errors) ?><br/>

            <div class="form-actions">
                <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/>
            </div>
        </form>
        </section>
    <?php endif ?>

    <div class="page-header">
        <h2><?= t('User settings') ?></h2>
    </div>
    <section>
        <h3 id="notifications"><?= t('Email notifications') ?></h3>
        <form method="post" action="?controller=config&amp;action=notifications" autocomplete="off">

            <?= Helper\form_csrf() ?>

            <?= Helper\form_checkbox('notifications_enabled', t('Enable email notifications'), '1', $notifications['notifications_enabled'] == 1) ?><br/>

            <p><?= t('I want to receive notifications only for those projects:') ?><br/><br/></p>

            <div class="form-checkbox-group">
            <?php foreach ($user_projects as $project_id => $project_name): ?>
                <?= Helper\form_checkbox('projects['.$project_id.']', $project_name, '1', isset($notifications['project_'.$project_id])) ?>
            <?php endforeach ?>
            </div>
            <div class="form-actions">
                <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/>
            </div>
        </form>
    </section>

    <?php if ($user['is_admin']): ?>
        <div class="page-header">
            <h2><?= t('More information') ?></h2>
        </div>
        <section class="settings">
            <ul>
                <li><a href="?controller=config&amp;action=tokens<?= Helper\param_csrf() ?>"><?= t('Reset all tokens') ?></a></li>
                <li>
                    <?= t('Webhooks token:') ?>
                    <strong><?= Helper\escape($values['webhooks_token']) ?></strong>
                </li>
                <li>
                    <?= t('API token:') ?>
                    <strong><?= Helper\escape($values['api_token']) ?></strong>
                </li>
                <?php if (DB_DRIVER === 'sqlite'): ?>
                    <li>
                        <?= t('Database size:') ?>
                        <strong><?= Helper\format_bytes($db_size) ?></strong>
                    </li>
                    <li>
                        <a href="?controller=config&amp;action=downloadDb<?= Helper\param_csrf() ?>"><?= t('Download the database') ?></a>
                        <?= t('(Gzip compressed Sqlite file)') ?>
                    </li>
                    <li>
                        <a href="?controller=config&amp;action=optimizeDb <?= Helper\param_csrf() ?>"><?= t('Optimize the database') ?></a>
                         <?= t('(VACUUM command)') ?>
                    </li>
                <?php endif ?>
                <li>
                    <?= t('Official website:') ?>
                    <a href="http://kanboard.net/" target="_blank" rel="noreferer">http://kanboard.net/</a>
                </li>
                <li>
                    <?= t('Application version:') ?>
                    <?= APP_VERSION ?>
                </li>
            </ul>
        </section>
    <?php endif ?>

    <div class="page-header" id="last-logins">
        <h2><?= t('Last logins') ?></h2>
    </div>
    <?php if (! empty($last_logins)): ?>
        <table class="table-small table-hover">
        <tr>
            <th><?= t('Login date') ?></th>
            <th><?= t('Authentication method') ?></th>
            <th><?= t('IP address') ?></th>
            <th><?= t('User agent') ?></th>
        </tr>
        <?php foreach($last_logins as $login): ?>
        <tr>
            <td><?= dt('%B %e, %G at %k:%M %p', $login['date_creation']) ?></td>
            <td><?= Helper\escape($login['auth_type']) ?></td>
            <td><?= Helper\escape($login['ip']) ?></td>
            <td><?= Helper\escape($login['user_agent']) ?></td>
        </tr>
        <?php endforeach ?>
        </table>
    <?php endif ?>

    <div class="page-header" id="remember-me">
        <h2><?= t('Persistent connections') ?></h2>
    </div>
    <?php if (empty($remember_me_sessions)): ?>
        <p class="alert alert-info"><?= t('No session') ?></p>
    <?php else: ?>
        <table class="table-small table-hover">
        <tr>
            <th><?= t('Creation date') ?></th>
            <th><?= t('Expiration date') ?></th>
            <th><?= t('IP address') ?></th>
            <th><?= t('User agent') ?></th>
            <th><?= t('Action') ?></th>
        </tr>
        <?php foreach($remember_me_sessions as $session): ?>
        <tr>
            <td><?= dt('%B %e, %G at %k:%M %p', $session['date_creation']) ?></td>
            <td><?= dt('%B %e, %G at %k:%M %p', $session['expiration']) ?></td>
            <td><?= Helper\escape($session['ip']) ?></td>
            <td><?= Helper\escape($session['user_agent']) ?></td>
            <td><a href="?controller=config&amp;action=removeRememberMeToken&amp;id=<?= $session['id'].Helper\param_csrf() ?>"><?= t('Remove') ?></a></td>
        </tr>
        <?php endforeach ?>
        </table>
    <?php endif ?>
</section>