%PDF- %PDF-
| Direktori : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/widgets/views/ |
| Current File : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/widgets/views/modalDialog.php |
<?php
use humhub\libs\Html;
use humhub\widgets\LoaderWidget;
?>
<!-- Dialog -->
<?= Html::beginTag('div', $options) ?>
<!-- Content -->
<div class="modal-content">
<!-- Header -->
<?php if ($header !== null || $showClose): ?>
<div class="modal-header">
<?php if ($showClose): ?>
<button aria-hidden="true" data-dismiss="modal" class="close" type="button" data-action-click="ui.modal.unload">×</button>
<?php endif; ?>
<?php if ($header !== null): ?>
<h4 class="modal-title"><?= $header ?></h4>
<?php endif; ?>
</div>
<?php endif; ?>
<?php if ($dialogContent) : ?>
<?= $dialogContent ?>
<?php else : ?>
<!-- Body -->
<div class="<?= $bodyClass ?>">
<?php if ($body !== null): ?>
<?= $body ?>
<?php endif; ?>
<?php if ($initialLoader): ?>
<?= LoaderWidget::widget(); ?>
<?php endif; ?>
</div>
<!-- Footer -->
<?php if ($footer !== null): ?>
<div class="modal-footer">
<?= $footer ?>
</div>
<?php endif; ?>
<?php endif; ?>
</div>
<?= Html::endTag('div') ?>