first commit
This commit is contained in:
33
layouts/plugins/system/jlsitemap_cron/fields/key.php
Normal file
33
layouts/plugins/system/jlsitemap_cron/fields/key.php
Normal 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>
|
||||
Reference in New Issue
Block a user