-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[2.5.18] Fix issue Alert message can't close - Frontend Edit
- Loading branch information
Showing
2 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?php | ||
defined('JPATH_BASE') or die; | ||
use Joomla\CMS\Language\Text; | ||
|
||
$msgList = $displayData['msgList']; | ||
?> | ||
<div id="system-message-container"> | ||
<?php if (is_array($msgList) && !empty($msgList)) : ?> | ||
<div id="system-message"> | ||
<?php foreach ($msgList as $type => $msgs) : ?> | ||
<div class="alert alert-<?php echo $type == "error" ? "danger" : ($type == "message" ? "info" : $type); ?> alert-dismissible fade show"> | ||
<?php // This requires JS so we should add it through JS. Progressive enhancement and stuff. | ||
?> | ||
<?php if (!empty($msgs)) : ?> | ||
<h4 class="alert-heading mb-0"><?php echo Text::_($type); ?></h4> | ||
<div> | ||
<?php foreach ($msgs as $msg) : ?> | ||
<div class="alert-message"><?php echo $msg; ?></div> | ||
<?php endforeach; ?> | ||
</div> | ||
<?php endif; ?> | ||
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button> | ||
</div> | ||
<?php endforeach; ?> | ||
</div> | ||
<?php endif; ?> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7296853
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This commit will solve #152