msgsForTable.php 353 B

123456789101112
  1. <div>
  2. <?php if (!empty($msgs)) : ?>
  3. <?php foreach ($msgs as $msgId => $msg) : ?>
  4. <div class="alert alert-<?php echo V::get('type', 'info', $msg); ?>">
  5. <?php echo $msg['message']; ?>
  6. <a class="btn btn-primary btn-xs" target="_blank" href="<?php echo $msg['link']; ?>">uruchom</a>
  7. </div>
  8. <?php endforeach; ?>
  9. <?php endif; ?>
  10. </div>