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