Your IP : 216.73.216.104


Current Path : /home/poneycluc/www/modules/mod_ja_acm/admin/tmpl/
Upload File :
Current File : /home/poneycluc/www/modules/mod_ja_acm/admin/tmpl/field-jalist.php

<?php

/**
 * ------------------------------------------------------------------------
 * JA ACM Module
 * ------------------------------------------------------------------------
 * Copyright (C) 2004-2018 J.O.O.M Solutions Co., Ltd. All Rights Reserved.
 * @license - GNU/GPL, http://www.gnu.org/licenses/gpl.html
 * Author: J.O.O.M Solutions Co., Ltd
 * Websites: http://www.joomlart.com - http://www.joomlancers.com
 * ------------------------------------------------------------------------
 */

use Joomla\CMS\Uri\Uri;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;

$field      = $displayData['field'];
$items      = $displayData['items'];
$value      = htmlspecialchars($field->value ?? '', ENT_COMPAT, 'UTF-8');
$id         = $field->id;
$name       = $field->name;
$showlabel  = (bool)$field->element['showlabel'];
$label      = Text::_($field->element['label']);
$desc       = Text::_($field->element['description']);

$width = 90 / count($items);

$jVersion = '';
if (version_compare(JVERSION, '4', 'ge')) {
	$jVersion = 'j4';
}

$doc = Factory::getDocument();
if (version_compare(JVERSION, '4', 'ge')) {
	$doc->addScript(Uri::root(true) . '/modules/mod_ja_acm/admin/assets/script_j4.js');
	$doc->addScript(Uri::root(true) . '/modules/mod_ja_acm/admin/assets/jalist_j4.js');
} else {
	$doc->addScript(Uri::root(true) . '/modules/mod_ja_acm/admin/assets/script.js');
	$doc->addScript(Uri::root(true) . '/modules/mod_ja_acm/admin/assets/jalist.js');
}
$doc->addStyleSheet(Uri::root(true) . '/modules/mod_ja_acm/admin/assets/style.css');
$doc->addStyleSheet(Uri::root(true) . '/modules/mod_ja_acm/admin/assets/jalist.css');
?>
<div class="jaacm-list <?php echo $id ?>">
	<?php if (!$showlabel) : ?>
		<h4><?php echo $label ?></h4>
		<p><?php echo $desc ?></p>
	<?php endif ?>
	<table class="jalist" width="100%">
		<thead>
			<tr>
				<?php foreach ($items as $item) :
					$title = (string) $item->element['title'];
					if (!$title) $title = (string) $item->element['label'];
				?>
					<th width="<?php echo $width ?>%">
						<?php echo Text::_($title) ?>
					</th>
				<?php endforeach ?>
				<th width="10%">&nbsp;</th>
			</tr>
		</thead>

		<tbody id="ja-acm-sortable">
			<tr class="first">
				<?php foreach ($items as $item) : ?>
					<td>
						<?php echo $item->getInput() ?>
					</td>
				<?php endforeach ?>
				<td>
					<span class="btn action btn-clone" data-action="clone_row" title="Clone Row"><i class="icon-plus"></i></span>
					<span class="btn action btn-delete" data-action="delete_row" title="Delete Row" data-confirm="<?php echo Text::_('MOD_JA_ACM_CONFIRM_DELETE_MSG') ?>">
						<i class="icon-minus"></i>
					</span>
				</td>
			</tr>
		</tbody>

	</table>

	<input type="hidden" name="<?php echo $name ?>" value="<?php echo $value ?>" class="acm-object" />
</div>
<script>
	// jaFieldList(jQuery, '.<?php echo $id ?>');
	function JAjSelectPosition_<?php echo $id; ?>__position(name) {
		if (hidden_position == '') {
			jModalClose();
			return;
		}
		document.getElementById(hidden_position).value = name;
		jModalClose();
	}
	var hidden_position = '';
	jQuery('.<?php echo $id ?>').jalist();

	(function(root, $) {
		$(document).ready(function() {
			var tr_ = $('#ja-acm-sortable tr');
			tr_.mouseenter(function() {
				$(this).css({
					'cursor': 'move',
					'box-shadow': '0 0 10px rgba(0,0,0,0.1)',
				});
			}).mouseleave(function() {
				$(this).css({
					'cursor': '',
					'box-shadow': ''
				});
			})
			$('#ja-acm-sortable').sortable({}).disableSelection();

			// remove fields image required
			var media_fields = $('joomla-field-media');
			if (media_fields && media_fields.length > 0) {
				media_fields.each(function(idx, el) {
					var $el = $(el);
					var div_input_group = $el.find('div.input-group');
					if (div_input_group && div_input_group.length > 0) {
						var input_media_field = $(div_input_group.find('input')[0]);
						if (input_media_field.hasClass('not-required') && input_media_field.attr('required') === 'required') {
							input_media_field.attr('required', false);
						}
					}
				})
			}
		})
	})(window, jQuery)
</script>