File manager - Edit - /home/ferretapmx/public_html/message.php.tar
Back
home/ferretapmx/public_html/layouts/joomla/system/message.php 0000644 00000004020 15231065376 0020621 0 ustar 00 <?php /** * @package Joomla.Site * @subpackage Layout * * @copyright (C) 2014 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; use Joomla\CMS\Application\CMSApplication; use Joomla\CMS\Factory; use Joomla\CMS\Language\Text; /* @var $displayData array */ $msgList = $displayData['msgList']; $document = Factory::getDocument(); $msgOutput = ''; $alert = [ CMSApplication::MSG_EMERGENCY => 'danger', CMSApplication::MSG_ALERT => 'danger', CMSApplication::MSG_CRITICAL => 'danger', CMSApplication::MSG_ERROR => 'danger', CMSApplication::MSG_WARNING => 'warning', CMSApplication::MSG_NOTICE => 'info', CMSApplication::MSG_INFO => 'info', CMSApplication::MSG_DEBUG => 'info', CMSApplication::MSG_MESSAGE => 'success' ]; // Load JavaScript message titles Text::script('ERROR'); Text::script('MESSAGE'); Text::script('NOTICE'); Text::script('WARNING'); Text::script('SUCCESS'); // Load other Javascript message strings Text::script('JCLOSE'); Text::script('JOK'); Text::script('JOPEN'); // Alerts progressive enhancement $document->getWebAssetManager() ->useStyle('webcomponent.joomla-alert') ->useScript('messages'); if (is_array($msgList) && !empty($msgList)) { $messages = []; foreach ($msgList as $type => $msgs) { // JS loaded messages $messages[] = [$alert[$type] ?? $type => $msgs]; // Noscript fallback if (!empty($msgs)) { $msgOutput .= '<div class="alert alert-' . ($alert[$type] ?? $type) . '">'; foreach ($msgs as $msg) : $msgOutput .= $msg; endforeach; $msgOutput .= '</div>'; } } if ($msgOutput !== '') { $msgOutput = '<noscript>' . $msgOutput . '</noscript>'; } $document->addScriptOptions('joomla.messages', $messages); } ?> <div id="system-message-container" aria-live="polite"><?php echo $msgOutput; ?></div> home/ferretapmx/public_html/plugins/system/stats/layouts/message.php 0000644 00000003634 15231113050 0022150 0 ustar 00 <?php /** * @package Joomla.Plugin * @subpackage System.stats * * @copyright (C) 2015 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; use Joomla\CMS\Language\Text; use Joomla\Registry\Registry; extract($displayData); /** * Layout variables * ----------------- * @var \Joomla\Plugin\System\Stats\Extension\Stats $plugin Plugin rendering this layout * @var Registry $pluginParams Plugin parameters * @var array $statsData Array containing the data that will be sent to the stats server */ ?> <joomla-alert type="info" dismiss class="js-pstats-alert hidden" role="alertdialog" close-text="<?php echo Text::_('JCLOSE'); ?>" aria-labelledby="alert-stats-heading"> <div class="alert-heading" id="alert-stats-heading"><?php echo Text::_('PLG_SYSTEM_STATS_LABEL_MESSAGE_TITLE'); ?></div> <div> <div class="alert-message"> <p> <?php echo Text::_('PLG_SYSTEM_STATS_MSG_JOOMLA_WANTS_TO_SEND_DATA'); ?> </p> <details> <summary> <?php echo Text::_('PLG_SYSTEM_STATS_MSG_WHAT_DATA_WILL_BE_SENT'); ?> </summary> <?php echo $plugin->render('stats', compact('statsData')); ?> </details> <p class="fw-bold"><?php echo Text::_('PLG_SYSTEM_STATS_MSG_ALLOW_SENDING_DATA'); ?></p> <p class="actions"> <button type="button" class="btn btn-primary js-pstats-btn-allow-never"><?php echo Text::_('PLG_SYSTEM_STATS_BTN_NEVER_SEND'); ?></button> <button type="button" class="btn btn-primary js-pstats-btn-allow-always"><?php echo Text::_('PLG_SYSTEM_STATS_BTN_SEND_ALWAYS'); ?></button> </p> </div> </div> </joomla-alert>
| ver. 1.4 |
Github
|
.
| PHP 8.2.32 | Generation time: 0.06 |
proxy
|
phpinfo
|
Settings