Skip to content

Commit

Permalink
Dev: New modal type 'empty' for massive action widget
Browse files Browse the repository at this point in the history
  • Loading branch information
olleharstedt committed Sep 21, 2016
1 parent c15be3b commit 07a143f
Showing 1 changed file with 23 additions and 0 deletions.
@@ -0,0 +1,23 @@
<!-- Modal confirmation for <?php echo $aAction['action'];?> -->
<div id="massive-actions-modal-<?php echo $aAction['action'];?>-<?php echo $key; ?>" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">

<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">&times;</button>
<h4 class="modal-title"><?php echo $aAction['sModalTitle']; ?></h4>
</div>

<div class="modal-body">
<div class='modal-body-text'><?php echo $aAction['htmlModalBody']; ?></div>
</div>

<div class="modal-footer modal-footer-buttons">
<?php foreach ($aAction['htmlFooterButtons'] as $buttonHtml): ?>
<?php echo $buttonHtml; ?>
<?php endforeach;?>
</div>
</div>
</div>
</div>

0 comments on commit 07a143f

Please sign in to comment.