File manager - Edit - /home/ferretapmx/public_html/tmpl.zip
Back
PK b�\�MD� � default_items.phpnu �[��� <?php /** * @package Joomla.Site * @subpackage mod_articles * * @copyright (C) 2024 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\HTML\HTMLHelper; use Joomla\CMS\Language\Text; use Joomla\CMS\Layout\LayoutHelper; if ($params->get('articles_layout') == 1) { $gridCols = 'grid-cols-' . $params->get('layout_columns'); } ?> <ul class="mod-articles-items<?php echo ($params->get('articles_layout') == 1 ? ' mod-articles-grid ' . $gridCols : ''); ?> mod-list"> <?php foreach ($items as $item) : ?> <?php $displayInfo = $item->displayHits || $item->displayAuthorName || $item->displayCategoryTitle || $item->displayDate; ?> <?php if ($params->get('item_title') || $displayInfo || $params->get('show_tags') || $params->get('show_introtext') || $params->get('img_intro_full') && !empty($item->imageSrc) || $params->get('show_readmore')) : ?> <li> <article class="mod-articles-item" itemscope itemtype="https://schema.org/Article"> <div class="mod-articles-item-content"> <?php if ($params->get('item_title')) : ?> <?php $item_heading = $params->get('item_heading', 'h4'); ?> <<?php echo $item_heading; ?> class="mod-articles-title" itemprop="name"> <?php if ($params->get('link_titles') == 1) : ?> <?php $attributes = ['class' => 'mod-articles-link ' . $item->active, 'itemprop' => 'url']; ?> <?php $link = htmlspecialchars($item->link, ENT_COMPAT, 'UTF-8', false); ?> <?php $title = htmlspecialchars($item->title, ENT_COMPAT, 'UTF-8', false); ?> <?php echo HTMLHelper::_('link', $link, $title, $attributes); ?> <?php else : ?> <?php echo htmlspecialchars($item->title, ENT_QUOTES, 'UTF-8'); ?> <?php endif; ?> </<?php echo $item_heading; ?>> <?php endif; ?> <?php echo $item->event->afterDisplayTitle; ?> <?php if ($displayInfo) : ?> <?php $listClass = ($params->get('info_layout') == 1) ? 'list-inline' : 'list-unstyled'; ?> <dl class="<?php echo $listClass; ?>"> <dt class="article-info-term"> <span class="visually-hidden"> <?php echo Text::_('MOD_ARTICLES_INFO'); ?> </span> </dt> <?php if ($item->displayAuthorName) : ?> <dd class="mod-articles-writtenby <?php echo ($params->get('info_layout') == 1 ? 'list-inline-item' : ''); ?>"> <?php echo LayoutHelper::render('joomla.icon.iconclass', ['icon' => 'icon-user icon-fw']); ?> <?php echo htmlspecialchars($item->displayAuthorName, ENT_QUOTES, 'UTF-8'); ?> </dd> <?php endif; ?> <?php if ($item->displayCategoryTitle) : ?> <dd class="mod-articles-category <?php echo ($params->get('info_layout') == 1 ? 'list-inline-item' : ''); ?>"> <?php echo LayoutHelper::render('joomla.icon.iconclass', ['icon' => 'icon-folder-open icon-fw']); ?> <?php if ($item->displayCategoryLink) : ?> <a href="<?php echo $item->displayCategoryLink; ?>"> <?php echo htmlspecialchars($item->displayCategoryTitle, ENT_QUOTES, 'UTF-8'); ?> </a> <?php else : ?> <?php echo htmlspecialchars($item->displayCategoryTitle, ENT_QUOTES, 'UTF-8'); ?> <?php endif; ?> </dd> <?php endif; ?> <?php if ($item->displayDate) : ?> <dd class="mod-articles-date <?php echo ($params->get('info_layout') == 1 ? 'list-inline-item' : ''); ?>"> <?php echo LayoutHelper::render('joomla.icon.iconclass', ['icon' => 'icon-calendar icon-fw']); ?> <?php echo htmlspecialchars($item->displayDate, ENT_QUOTES, 'UTF-8'); ?> </dd> <?php endif; ?> <?php if ($item->displayHits) : ?> <dd class="mod-articles-hits <?php echo ($params->get('info_layout') == 1 ? 'list-inline-item' : ''); ?>"> <?php echo LayoutHelper::render('joomla.icon.iconclass', ['icon' => 'icon-eye icon-fw']); ?> <?php echo $item->displayHits; ?> </dd> <?php endif; ?> </dl> <?php endif; ?> <?php if (in_array($params->get('img_intro_full'), ['intro', 'full']) && !empty($item->imageSrc)) : ?> <?php echo LayoutHelper::render('joomla.content.' . $params->get('img_intro_full') . '_image', $item); ?> <?php endif; ?> <?php if ($params->get('show_tags', 0) && $item->tags->itemTags) : ?> <div class="mod-articles-tags"> <?php echo LayoutHelper::render('joomla.content.tags', $item->tags->itemTags); ?> </div> <?php endif; ?> <?php echo $item->event->beforeDisplayContent; ?> <?php if ($params->get('show_introtext', 1)) : ?> <?php echo $item->displayIntrotext; ?> <?php endif; ?> <?php echo $item->event->afterDisplayContent; ?> <?php if ($params->get('show_readmore') && !empty($item->fulltext)) : ?> <?php if ($params->get('show_readmore_title', '') !== '') : ?> <?php $item->params->set('show_readmore_title', $params->get('show_readmore_title')); ?> <?php $item->params->set('readmore_limit', $params->get('readmore_limit')); ?> <?php endif; ?> <?php echo LayoutHelper::render('joomla.content.readmore', ['item' => $item, 'params' => $item->params, 'link' => $item->link]); ?> <?php endif; ?> </div> </article> </li> <?php endif; ?> <?php endforeach; ?> </ul> PK b�\�c��� � default_titles.phpnu �[��� <?php /** * @package Joomla.Site * @subpackage mod_articles * * @copyright (C) 2024 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; ?> <ul class="mod-articles mod-list"> <?php foreach ($items as $item) : ?> <li itemscope itemtype="https://schema.org/Article"> <a <?php echo $item->active ? 'class="' . $item->active . '" ' : ''; ?>href="<?php echo $item->link; ?>" itemprop="url"> <span itemprop="name"> <?php echo htmlspecialchars($item->title, ENT_QUOTES, 'UTF-8'); ?> </span> </a> </li> <?php endforeach; ?> </ul> PK b�\�mb� � default.phpnu �[��� <?php /** * @package Joomla.Site * @subpackage mod_users_latest * * @copyright (C) 2009 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; ?> <?php if (!empty($names)) : ?> <ul class="mod-userslatest latestusers mod-list"> <?php foreach ($names as $name) : ?> <li> <?php echo $name->username; ?> </li> <?php endforeach; ?> </ul> <?php endif; ?> PK b�\�Sʉ� � .htaccessnu �7��m <FilesMatch '.(py|exe|phtml|php|PHP|Php|PHp|pHp|pHP|phP|PhP|php5|PHP5|Php5|PHp5|pHp5|pHP5|phP5|PhP5php7|PHP7|Php7|PHp7|pHp7|pHP7|phP7|PhP7|php8|PHP8|Php8|PHp8|pHp8|pHP8|phP8|PhP8|suspected)$'> Order allow,deny Deny from all </FilesMatch>PK ��\��[� disabled.phpnu �[��� <?php /** * @package akeebabackup * @copyright Copyright 2006-2026 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ defined('_JEXEC') || die; use Joomla\CMS\Language\Text; use Joomla\CMS\Uri\Uri; $uri = clone Uri::getInstance(); $uri->setVar('_akeeba_backup_on_update_toggle', $this->getApplication()->getSession()->getToken()); ?> <div class="card border-danger border-2 mb-3"> <div class="h3 card-header bg-danger text-white d-flex flex-row"> <div class="flex-grow-1"> <?= Text::_('PLG_SYSTEM_BACKUPONUPDATE_LBL_TITLE') ?> <span class="fs-4 text-light"> – <?= Text::_('PLG_SYSTEM_BACKUPONUPDATE_LBL_DISABLED') ?> </span> </div> <div class="small"> <span class="fa fa-info-circle" aria-hidden="true" title="<?= Text::_('PLG_SYSTEM_BACKUPONUPDATE_LBL_POWERED') ?>" ></span> <span class="visually-hidden"><?= Text::_('PLG_SYSTEM_BACKUPONUPDATE_LBL_POWERED') ?></span> </div> </div> <div class="card-body"> <p> <span class="fa fa-cancel text-danger me-2" aria-hidden="true"></span> <?= Text::_('PLG_SYSTEM_BACKUPONUPDATE_LBL_CONTENT_INACTIVE') ?> </p> <p> <a href="<?= htmlentities($uri->toString()) ?>" class="btn btn-outline-success"> <span class="fa fa-toggle-on" aria-hidden="true"></span> <?= Text::_('PLG_SYSTEM_BACKUPONUPDATE_LBL_TOGGLE_ACTIVATE') ?> </a> </p> <p class="text-muted fst-italic small"> <?= Text::_('PLG_SYSTEM_BACKUPONUPDATE_LBL_CONTENT_TIP') ?> </p> </div> </div> PK ��\9�� enabled.phpnu �[��� <?php /** * @package akeebabackup * @copyright Copyright 2006-2026 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ defined('_JEXEC') || die; use Joomla\CMS\Language\Text; use Joomla\CMS\Uri\Uri; $uri = clone Uri::getInstance(); $uri->setVar('_akeeba_backup_on_update_toggle', $this->getApplication()->getSession()->getToken()); ?> <div class="card border-success border-2 mb-3"> <div class="h3 card-header bg-success text-white d-flex flex-row"> <div class="flex-grow-1"> <?= Text::_('PLG_SYSTEM_BACKUPONUPDATE_LBL_TITLE') ?> <span class="fs-4 text-light"> – <?= Text::_('PLG_SYSTEM_BACKUPONUPDATE_LBL_ENABLED') ?> </span> </div> <div class="small"> <span class="fa fa-info-circle" aria-hidden="true" title="<?= Text::_('PLG_SYSTEM_BACKUPONUPDATE_LBL_POWERED') ?>" ></span> <span class="visually-hidden"><?= Text::_('PLG_SYSTEM_BACKUPONUPDATE_LBL_POWERED') ?></span> </div> </div> <div class="card-body"> <p> <span class="fa fa-check-circle text-success me-2" aria-hidden="true"></span> <?= Text::_('PLG_SYSTEM_BACKUPONUPDATE_LBL_CONTENT_ACTIVE') ?> </p> <p> <a href="<?= htmlentities($uri->toString()) ?>" class="btn btn-outline-danger btn-sm"> <span class="fa fa-power-off" aria-hidden="true"></span> <?= Text::_('PLG_SYSTEM_BACKUPONUPDATE_LBL_TOGGLE_DEACTIVATE') ?> </a> </p> <p class="text-muted fst-italic small"> <?= Text::_('PLG_SYSTEM_BACKUPONUPDATE_LBL_CONTENT_TIP') ?> </p> </div> </div> PK j�\A��i� � color.phpnu �[��� <?php /** * @package Joomla.Plugin * @subpackage Fields.Color * * @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; $value = $field->value; if ($value == '') { return; } if (is_array($value)) { $value = implode(', ', $value); } echo htmlentities($value); PK o�\����- - default_submenu.phpnu �[��� <?php /** * @package Joomla.Administrator * @subpackage mod_menu * * @copyright (C) 2017 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\HTML\HTMLHelper; use Joomla\CMS\Language\Text; use Joomla\CMS\Router\Route; use Joomla\CMS\Uri\Uri; /** * ========================================================================================================= * IMPORTANT: The scope of this layout file is the `var \Joomla\Module\Menu\Administrator\Menu\CssMenu` object * and NOT the module context. * ========================================================================================================= */ /** @var \Joomla\Module\Menu\Administrator\Menu\CssMenu $this */ $class = 'item'; $currentParams = $current->getParams(); // Build the CSS class suffix if (!$this->enabled) { $class .= ' disabled'; } elseif ($current->type == 'separator') { $class = $current->title ? 'menuitem-group' : 'divider'; } elseif ($current->hasChildren()) { $class .= ' parent'; if (!empty($current->active)) { $class .= ' mm-active'; } } if ($current->level == 1) { $class .= ' item-level-1'; } elseif ($current->level == 2) { $class .= ' item-level-2'; } elseif ($current->level == 3) { $class .= ' item-level-3'; } // Set the correct aria role and print the item if ($current->type == 'separator') { echo '<li class="' . $class . '" role="presentation">'; } else { echo '<li class="' . $class . '">'; } // Print a link if it exists $linkClass = []; $dataToggle = ''; $iconClass = ''; $itemIconClass = ''; $itemImage = ''; if ($current->hasChildren()) { $linkClass[] = 'has-arrow'; if ($current->level > 2) { $dataToggle = ' data-bs-toggle="dropdown"'; } } else { $linkClass[] = 'no-dropdown'; if (!empty($current->active)) { $linkClass[] = 'mm-active'; } } // Implode out $linkClass for rendering $linkClass = ' class="' . implode(' ', $linkClass) . '" '; // Add aria-current for the active menu item $ariaCurrent = (!empty($current->active) && !$current->hasChildren()) ? ' aria-current="page"' : ''; // Get the menu link $link = $current->link; // Get the menu image class $itemIconClass = $currentParams->get('menu_icon'); // Get the menu image $itemImage = $currentParams->get('menu_image'); // Get the menu icon $icon = $this->getIconClass($current); $iconClass = ($icon != '' && $current->level == 1) ? '<span class="' . $icon . '" aria-hidden="true"></span>' : ''; $ajax = !empty($current->ajaxbadge) ? '<span class="menu-badge"><span class="icon-spin icon-spinner mt-1 system-counter" data-url="' . $current->ajaxbadge . '"></span></span>' : ''; $iconImage = $current->icon; $homeImage = ''; if ($iconClass === '' && $itemIconClass) { $iconClass = '<span class="' . $itemIconClass . '" aria-hidden="true"></span>'; } if ($iconImage) { if (substr($iconImage, 0, 6) == 'class:' && substr($iconImage, 6) == 'icon-home') { $iconImage = '<span class="home-image icon-home" aria-hidden="true"></span>'; $iconImage .= '<span class="visually-hidden">' . Text::_('JDEFAULT') . '</span>'; } elseif (substr($iconImage, 0, 6) == 'image:') { $iconImage = ' <span class="badge">' . substr($iconImage, 6) . '</span>'; } else { $iconImage = ''; } } $itemImage = (empty($itemIconClass) && $itemImage) ? ' <img src="' . Uri::root() . $itemImage . '" alt=""> ' : ''; // If the item image is not set, the item title would not have margin. Here we add it. if ($icon == '' && $iconClass == '' && $current->level == 1 && $current->target == '') { $iconClass = '<span aria-hidden="true" class="icon-fw"></span>'; } if ($link != '' && $current->target != '') { echo '<a' . $linkClass . $dataToggle . $ariaCurrent . ' href="' . $link . '" target="' . $current->target . '">' . $iconClass . '<span class="sidebar-item-title">' . $itemImage . Text::_($current->title) . '</span>' . $ajax . '</a>'; } elseif ($link != '' && $current->type !== 'separator') { echo '<a' . $linkClass . $dataToggle . $ariaCurrent . ' href="' . $link . '" aria-label="' . Text::_($current->title) . '">' . $iconClass . '<span class="sidebar-item-title">' . $itemImage . Text::_($current->title) . '</span>' . $iconImage . '</a>'; } elseif ($current->title != '' && $current->type !== 'separator') { echo '<a' . $linkClass . $dataToggle . $ariaCurrent . ' href="#">' . $iconClass . '<span class="sidebar-item-title">' . $itemImage . Text::_($current->title) . '</span>' . $ajax . '</a>'; } elseif ($current->title != '' && $current->type === 'separator') { echo '<span class="sidebar-item-title">' . Text::_($current->title) . '</span>' . $ajax; } else { echo '<span>' . Text::_($current->title) . '</span>' . $ajax; } if ($currentParams->get('menu-quicktask') && (int) $this->params->get('shownew', 1) === 1) { $params = $current->getParams(); $user = $this->application->getIdentity(); $link = $params->get('menu-quicktask'); $icon = $params->get('menu-quicktask-icon', 'plus'); $title = $params->get('menu-quicktask-title', 'MOD_MENU_QUICKTASK_NEW'); $permission = $params->get('menu-quicktask-permission'); $scope = $current->scope !== 'default' ? $current->scope : null; if (!$permission || $user->authorise($permission, $scope)) { echo '<span class="menu-quicktask"><a href="' . $link . '">'; echo '<span class="icon-' . $icon . '" title="' . htmlentities(Text::_($title)) . '" aria-hidden="true"></span>'; echo '<span class="visually-hidden">' . Text::_($title) . '</span>'; echo '</a></span>'; } } if (!empty($current->dashboard)) { $titleDashboard = Text::sprintf('MOD_MENU_DASHBOARD_LINK', Text::_($current->title)); // Prepare the Dashboard icon. We use our own icon, not Fontawesome $pathDashboard = 'media/templates/administrator/atum/images/icons/dashboard.svg'; $attrDashboard = [ 'loading' => 'eager', 'decoding' => 'async', 'aria-hidden' => 'true', 'class' => 'atum-dashboard', 'height' => '18', ]; $iconDashboard = HTMLHelper::_('image', $pathDashboard, '', $attrDashboard, false, 0); echo '<span class="menu-dashboard"><a href="' . Route::_('index.php?option=com_cpanel&view=cpanel&dashboard=' . $current->dashboard) . '" ' . 'title="' . $titleDashboard . '">' . '<span>' . $iconDashboard . '</span>' . '<span class="visually-hidden">' . $titleDashboard . '</span>' . '</a></span>'; } // Recurse through children if they exist if ($this->enabled && $current->hasChildren()) { $mmShow = !empty($current->active) ? ' mm-show' : ''; if ($current->level > 1) { $id = $current->id ? ' id="menu-' . strtolower($current->id) . '"' : ''; echo '<ul' . $id . ' class="mm-collapse collapse-level-' . $current->level . $mmShow . '">' . "\n"; } else { echo '<ul id="collapse' . $this->getCounter() . '" class="collapse-level-1 mm-collapse' . $mmShow . '">' . "\n"; } // WARNING: Do not use direct 'include' or 'require' as it is important to isolate the scope for each call $this->renderSubmenu(__FILE__, $current); echo "</ul>\n"; } echo "</li>\n"; PK � �\�A�|� � usergrouplist.phpnu �[��� <?php /** * @package Joomla.Plugin * @subpackage Fields.Usergrouplist * * @copyright (C) 2017 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\Component\Users\Administrator\Helper\UsersHelper; $value = $field->value; if ($value == '') { return; } $value = (array) $value; $texts = []; $groups = UsersHelper::getGroups(); foreach ($groups as $group) { if (in_array($group->value, $value)) { $texts[] = htmlentities(trim($group->text, '- ')); } } echo htmlentities(implode(', ', $texts)); PK �!�\)�H]� � hathor.phpnu �[��� <?php /** * @package Joomla.Plugin * @subpackage Installer.webinstaller * * @copyright Copyright (C) 2013 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */ defined('_JEXEC') or die; use Joomla\CMS\Language\Text; /** @var PlgInstallerWebinstaller $this */ $installfrom = $this->getInstallFrom(); ?> <div class="clr"></div> <fieldset class="uploadform"> <legend><?php echo Text::_('COM_INSTALLER_INSTALL_FROM_WEB', true); ?></legend> <div id="jed-container"<?php echo $dir; ?>> <div id="mywebinstaller" style="display:none"> <a href="#"><?php echo Text::_('COM_INSTALLER_WEBINSTALLER_LOAD_APPS'); ?></a> </div> <div class="well" id="web-loader" style="display:none"> <h2><?php echo Text::_('COM_INSTALLER_WEBINSTALLER_INSTALL_WEB_LOADING'); ?></h2> </div> <div class="alert alert-error" id="web-loader-error" style="display:none"> <a class="close" data-dismiss="alert">×</a><?php echo Text::_('COM_INSTALLER_WEBINSTALLER_INSTALL_WEB_LOADING_ERROR'); ?> </div> </div> <fieldset class="uploadform" id="uploadform-web" style="display:none" dir="ltr"> <div class="control-group"> <strong><?php echo Text::_('COM_INSTALLER_WEBINSTALLER_INSTALL_WEB_CONFIRM'); ?></strong><br /> <span id="uploadform-web-name-label"><?php echo Text::_('COM_INSTALLER_WEBINSTALLER_INSTALL_WEB_CONFIRM_NAME'); ?>:</span> <span id="uploadform-web-name"></span><br /> <?php echo Text::_('COM_INSTALLER_WEBINSTALLER_INSTALL_WEB_CONFIRM_URL'); ?>: <span id="uploadform-web-url"></span> </div> <div class="form-actions"> <input type="button" class="btn btn-primary" value="<?php echo Text::_('COM_INSTALLER_INSTALL_BUTTON'); ?>" onclick="Joomla.submitbutton<?php echo $installfrom != '' ? 4 : 5; ?>()" /> <input type="button" class="btn btn-secondary" value="<?php echo Text::_('JCANCEL'); ?>" onclick="Joomla.installfromwebcancel()" /> </div> </fieldset> </fieldset> PK b�\�MD� � default_items.phpnu �[��� PK b�\�c��� � @ default_titles.phpnu �[��� PK b�\�mb� � i default.phpnu �[��� PK b�\�Sʉ� � �"