mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
21 lines
1.1 KiB
PHP
21 lines
1.1 KiB
PHP
<div class="page-header">
|
|
<h2><?= t('Public access') ?></h2>
|
|
</div>
|
|
|
|
<?php if ($project['is_public']): ?>
|
|
|
|
<div class="settings">
|
|
<ul class="no-bullet">
|
|
<li><strong><i class="fa fa-share-alt"></i> <a href="?controller=board&action=readonly&token=<?= $project['token'] ?>" target="_blank"><?= t('Public link') ?></a></strong></li>
|
|
<li><strong><i class="fa fa-rss-square"></i> <a href="?controller=project&action=feed&token=<?= $project['token'] ?>" target="_blank"><?= t('RSS feed') ?></a></strong></li>
|
|
</ul>
|
|
<input type="text" readonly="readonly" value="<?= Helper\get_current_base_url() ?>?controller=board&action=readonly&token=<?= $project['token'] ?>"/>
|
|
</div>
|
|
|
|
<a href="?controller=project&action=disablePublic&project_id=<?= $project['id'].Helper\param_csrf() ?>" class="btn btn-red"><?= t('Disable public access') ?></a>
|
|
|
|
<?php else: ?>
|
|
|
|
<a href="?controller=project&action=enablePublic&project_id=<?= $project['id'].Helper\param_csrf() ?>" class="btn btn-blue"><?= t('Enable public access') ?></a>
|
|
|
|
<?php endif ?>
|