first commit

This commit is contained in:
2026-02-08 21:16:11 +01:00
commit e17b7026fd
8881 changed files with 1160453 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
<?php
/**
* @package System - JLSitemap Cron Plugin
* @version 1.12.0
* @author Joomline - joomline.ru
* @copyright Copyright (c) 2010 - 2022 Joomline. All rights reserved.
* @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
* @link https://joomline.ru/
*/
defined('_JEXEC') or die;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Factory;
extract($displayData);
/**
* Layout variables
* -----------------
* @var string $id DOM id of the field.
* @var string $name Name of the input field.
* @var string $value Value attribute of the field.
*/
$date = (empty($value)) ? Text::_('JNEVER') : HTMLHelper::_('date', $value, Text::_('DATE_FORMAT_LC6')) .
' (' . Factory::getConfig()->get('offset') . ')'
?>
<div data-input-date="<?php echo $id; ?>">
<input type="text" value="<?php echo $date; ?>" readonly>
<input id="<?php echo $id; ?>" type="hidden" name="<?php echo $name; ?>" value="<?php echo $value; ?>" readonly>
</div>

View File

@@ -0,0 +1,33 @@
<?php
/**
* @package System - JLSitemap Cron Plugin
* @version 1.12.0
* @author Joomline - joomline.ru
* @copyright Copyright (c) 2010 - 2022 Joomline. All rights reserved.
* @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
* @link https://joomline.ru/
*/
defined('_JEXEC') or die;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
extract($displayData);
/**
* Layout variables
* -----------------
* @var string $id DOM id of the field.
* @var string $name Name of the input field.
* @var string $value Value attribute of the field.
*/
HTMLHelper::_('jquery.framework');
HTMLHelper::_('script', 'media/plg_system_jlsitemap_cron/js/key.min.js', array('version' => 'auto'));
?>
<div class="input-append" data-input-key="<?php echo $id; ?>">
<input id="<?php echo $id; ?>" type="text" name="<?php echo $name; ?>" value="<?php echo $value; ?>">
<a class="btn generate"><?php echo Text::_('PLG_SYSTEM_JLSITEMAP_CRON_PARAMS_KEY_GENERATE'); ?></a>
</div>

View File

@@ -0,0 +1,42 @@
<?php
/**
* @package System - JLSitemap Cron Plugin
* @version 1.12.0
* @author Joomline - joomline.ru
* @copyright Copyright (c) 2010 - 2022 Joomline. All rights reserved.
* @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
* @link https://joomline.ru/
*/
defined('_JEXEC') or die;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
extract($displayData);
/**
* Layout variables
* -----------------
* @var string $id DOM id of the field.
* @var string $name Name of the input field.
* @var string $link Base cron link.
*/
HTMLHelper::_('jquery.framework');
HTMLHelper::_('stylesheet', 'media/plg_system_jlsitemap_cron/css/link.min.css', array('version' => 'auto'));
HTMLHelper::_('script', 'media/plg_system_jlsitemap_cron/js/link.min.js', array('version' => 'auto'));
?>
<div id="<?php echo $id; ?>" data-input-link="<?php echo $link; ?>">
<div class="title">
<?php echo Text::_('PLG_SYSTEM_JLSITEMAP_CRON_PARAMS_LINK'); ?>
</div>
<div class="input clearfix">
<code class=""></code>
<input type="hidden" name="<?php echo $name; ?>">
</div>
<div class="description">
<?php echo Text::_('PLG_SYSTEM_JLSITEMAP_CRON_PARAMS_LINK_DESC'); ?>
</div>
</div>