Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | |
0.00% |
0 / 4 |
||
| <?php | |
| /** | |
| * @link https://www.humhub.org/ | |
| * @copyright Copyright (c) 2018 HumHub GmbH & Co. KG | |
| * @license https://www.humhub.com/licences | |
| * | |
| */ | |
| use humhub\widgets\Button; | |
| use humhub\widgets\ModalButton; | |
| use humhub\widgets\ModalDialog; | |
| /* @var $this \humhub\components\View */ | |
| /* @var $task \humhub\modules\tasks\models\Task */ | |
| /* @var $canManageEntries boolean */ | |
| /* @var $editUrl string */ | |
| ?> | |
| <?php ModalDialog::begin(['size' => 'large', 'closable' => true]); ?> | |
| <div class="modal-body" style="padding-bottom:0px"> | |
| <?= $this->renderAjax('modal_entry', ['task' => $task])?> | |
| </div> | |
| <div class="modal-footer"> | |
| <?php if($canManageEntries): ?> | |
| <?= ModalButton::primary(Yii::t('TasksModule.base', 'Edit'))->load($editUrl)->loader(true); ?> | |
| <?php endif; ?> | |
| <?= ModalButton::cancel(Yii::t('TasksModule.base', 'Close')) ?> | |
| </div> | |
| <?php ModalDialog::end(); ?> |