primo commit
This commit is contained in:
40
templates/joomla-italia-theme/html/layouts/chromes/above.php
Normal file
40
templates/joomla-italia-theme/html/layouts/chromes/above.php
Normal file
@ -0,0 +1,40 @@
|
||||
<?php
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
$module = $displayData['module'];
|
||||
$params = $displayData['params'];
|
||||
$attribs = $displayData['attribs'];
|
||||
|
||||
if ($module->content === null || $module->content === '') {
|
||||
return;
|
||||
}
|
||||
|
||||
$moduleTag = $params->get('module_tag', 'div');
|
||||
$moduleAttribs = [];
|
||||
$moduleAttribs['class'] = ' ' . htmlspecialchars($params->get('moduleclass_sfx', ''), ENT_QUOTES, 'UTF-8');
|
||||
$headerTag = htmlspecialchars($params->get('header_tag', 'h3'), ENT_QUOTES, 'UTF-8');
|
||||
$headerClass = htmlspecialchars($params->get('header_class', ''), ENT_QUOTES, 'UTF-8');
|
||||
$headerAttribs = [];
|
||||
|
||||
// Only output a header class if one is set
|
||||
if ($headerClass !== '') {
|
||||
$headerAttribs['class'] = $headerClass;
|
||||
}
|
||||
|
||||
// Only add aria if the moduleTag is not a div
|
||||
if ($moduleTag !== 'div') {
|
||||
if ($module->showtitle) :
|
||||
$moduleAttribs['aria-labelledby'] = 'mod-' . $module->id;
|
||||
$headerAttribs['id'] = 'mod-' . $module->id;
|
||||
else :
|
||||
$moduleAttribs['aria-label'] = $module->title;
|
||||
endif;
|
||||
}
|
||||
|
||||
$header = '<' . $headerTag . ' ' . ArrayHelper::toString($headerAttribs) . '>' . $module->title . '</' . $headerTag . '>';
|
||||
?>
|
||||
|
||||
|
||||
<?php echo $module->content; ?>
|
||||
41
templates/joomla-italia-theme/html/layouts/chromes/below.php
Normal file
41
templates/joomla-italia-theme/html/layouts/chromes/below.php
Normal file
@ -0,0 +1,41 @@
|
||||
<?php
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
$module = $displayData['module'];
|
||||
$params = $displayData['params'];
|
||||
$attribs = $displayData['attribs'];
|
||||
|
||||
if ($module->content === null || $module->content === '') {
|
||||
return;
|
||||
}
|
||||
|
||||
$moduleTag = $params->get('module_tag', 'div');
|
||||
$moduleAttribs = [];
|
||||
$moduleAttribs['class'] = ' ' . htmlspecialchars($params->get('moduleclass_sfx', ''), ENT_QUOTES, 'UTF-8');
|
||||
$headerTag = htmlspecialchars($params->get('header_tag', 'h3'), ENT_QUOTES, 'UTF-8');
|
||||
$headerClass = htmlspecialchars($params->get('header_class', ''), ENT_QUOTES, 'UTF-8');
|
||||
$headerAttribs = [];
|
||||
|
||||
// Only output a header class if one is set
|
||||
if ($headerClass !== '') {
|
||||
$headerAttribs['class'] = $headerClass;
|
||||
}
|
||||
|
||||
// Only add aria if the moduleTag is not a div
|
||||
if ($moduleTag !== 'div') {
|
||||
if ($module->showtitle) :
|
||||
$moduleAttribs['aria-labelledby'] = 'mod-' . $module->id;
|
||||
$headerAttribs['id'] = 'mod-' . $module->id;
|
||||
else :
|
||||
$moduleAttribs['aria-label'] = $module->title;
|
||||
endif;
|
||||
}
|
||||
|
||||
$header = '<' . $headerTag . ' ' . ArrayHelper::toString($headerAttribs) . '>' . $module->title . '</' . $headerTag . '>';
|
||||
?>
|
||||
<section class="wrapperbelow">
|
||||
|
||||
<?php echo $module->content; ?>
|
||||
</section>
|
||||
@ -0,0 +1,55 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2019 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*
|
||||
* html5 (chosen html5 tag and font header tags)
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
$module = $displayData['module'];
|
||||
$params = $displayData['params'];
|
||||
|
||||
if ((string) $module->content === '') {
|
||||
return;
|
||||
}
|
||||
|
||||
$moduleTag = htmlspecialchars($params->get('module_tag', 'div'), ENT_QUOTES, 'UTF-8');
|
||||
$moduleAttribs = [];
|
||||
$moduleAttribs['class'] = 'moduletable mb-3 footermenu ' . htmlspecialchars($params->get('moduleclass_sfx', ''), ENT_QUOTES, 'UTF-8');
|
||||
$bootstrapSize = (int) $params->get('bootstrap_size', 0);
|
||||
$moduleAttribs['class'] .= $bootstrapSize !== 0 ? ' col-md-' . $bootstrapSize : '';
|
||||
$headerTag = htmlspecialchars($params->get('header_tag', 'h3'), ENT_QUOTES, 'UTF-8');
|
||||
$headerClass = htmlspecialchars($params->get('header_class', ''), ENT_QUOTES, 'UTF-8');
|
||||
$headerAttribs = [];
|
||||
|
||||
// Only output a header class if one is set
|
||||
if ($headerClass !== '') {
|
||||
$headerAttribs['class'] = $headerClass;
|
||||
}
|
||||
|
||||
// Only add aria if the moduleTag is not a div
|
||||
if ($moduleTag !== 'div') {
|
||||
if ($module->showtitle) :
|
||||
$moduleAttribs['aria-labelledby'] = 'mod-' . $module->id;
|
||||
$headerAttribs['id'] = 'mod-' . $module->id;
|
||||
else :
|
||||
$moduleAttribs['aria-label'] = $module->title;
|
||||
endif;
|
||||
}
|
||||
|
||||
$header = '<' . $headerTag . ' ' . ArrayHelper::toString($headerAttribs) . '>' . $module->title . '</' . $headerTag . '>';
|
||||
?>
|
||||
<<?php echo $moduleTag; ?> <?php echo ArrayHelper::toString($moduleAttribs); ?>>
|
||||
<?php if ((bool) $module->showtitle) : ?>
|
||||
<?php echo $header; ?>
|
||||
<?php endif; ?>
|
||||
<?php echo $module->content; ?>
|
||||
</<?php echo $moduleTag; ?>>
|
||||
40
templates/joomla-italia-theme/html/layouts/chromes/user.php
Normal file
40
templates/joomla-italia-theme/html/layouts/chromes/user.php
Normal file
@ -0,0 +1,40 @@
|
||||
<?php
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
$module = $displayData['module'];
|
||||
$params = $displayData['params'];
|
||||
$attribs = $displayData['attribs'];
|
||||
|
||||
if ($module->content === null || $module->content === '') {
|
||||
return;
|
||||
}
|
||||
|
||||
$moduleTag = $params->get('module_tag', 'div');
|
||||
$moduleAttribs = [];
|
||||
$moduleAttribs['class'] = 'wrapperuser ' . htmlspecialchars($params->get('moduleclass_sfx', ''), ENT_QUOTES, 'UTF-8');
|
||||
$headerTag = htmlspecialchars($params->get('header_tag', 'h3'), ENT_QUOTES, 'UTF-8');
|
||||
$headerClass = htmlspecialchars($params->get('header_class', ''), ENT_QUOTES, 'UTF-8');
|
||||
$headerAttribs = [];
|
||||
|
||||
// Only output a header class if one is set
|
||||
if ($headerClass !== '') {
|
||||
$headerAttribs['class'] = $headerClass;
|
||||
}
|
||||
|
||||
// Only add aria if the moduleTag is not a div
|
||||
if ($moduleTag !== 'div') {
|
||||
if ($module->showtitle) :
|
||||
$moduleAttribs['aria-labelledby'] = 'mod-' . $module->id;
|
||||
$headerAttribs['id'] = 'mod-' . $module->id;
|
||||
else :
|
||||
$moduleAttribs['aria-label'] = $module->title;
|
||||
endif;
|
||||
}
|
||||
|
||||
$header = '<' . $headerTag . ' ' . ArrayHelper::toString($headerAttribs) . '>' . $module->title . '</' . $headerTag . '>';
|
||||
?>
|
||||
<section <?php echo ArrayHelper::toString($moduleAttribs); ?>>
|
||||
<?php echo $module->content; ?>
|
||||
</section>
|
||||
@ -0,0 +1,68 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
if (!array_key_exists('field', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field = $displayData['field'];
|
||||
$label = Text::_($field->label);
|
||||
$value = $field->value;
|
||||
$showLabel = $field->params->get('showlabel');
|
||||
$prefix = Text::plural($field->params->get('prefix'), $value);
|
||||
$suffix = Text::plural($field->params->get('suffix'), $value);
|
||||
$labelClass = $field->params->get('label_render_class');
|
||||
$valueClass = $field->params->get('value_render_class');
|
||||
|
||||
// Ottengo l'ID del campo
|
||||
$fieldid = $field->id;
|
||||
|
||||
|
||||
if ($value == '') {
|
||||
return;
|
||||
}
|
||||
|
||||
// Aggiungo il data element
|
||||
switch ($label) :
|
||||
case 'Come si accede al servizio':
|
||||
$dtelm = 'data-element="service-generic-access"';
|
||||
break;
|
||||
default:
|
||||
$dtelm = '';
|
||||
endswitch;
|
||||
|
||||
// Aggiungo ID per il menu indice
|
||||
switch ($label) :
|
||||
case 'Come si accede al servizio':
|
||||
$idelm = 'id="art-par-02"';
|
||||
break;
|
||||
default:
|
||||
$idelm = 'id="art-par-'.$fieldid.'"';
|
||||
endswitch;
|
||||
|
||||
?>
|
||||
<div>
|
||||
|
||||
|
||||
<?php if ($showLabel == 1) : ?>
|
||||
<h2 class="h4 <?php echo $labelClass; ?>" <?php echo $idelm; ?>><?php echo htmlentities($label, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></h2>
|
||||
<?php endif; ?>
|
||||
<?php if ($prefix) : ?>
|
||||
<span class="field-prefix"><?php echo htmlentities($prefix, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></span>
|
||||
<?php endif; ?>
|
||||
<p <?php echo $dtelm; ?>><?php echo $value; ?></p>
|
||||
<?php if ($suffix) : ?>
|
||||
<span class="field-suffix"><?php echo htmlentities($suffix, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></span>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
if (!array_key_exists('field', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field = $displayData['field'];
|
||||
$label = Text::_($field->label);
|
||||
$value = $field->value;
|
||||
$showLabel = $field->params->get('showlabel');
|
||||
$prefix = Text::plural($field->params->get('prefix'), $value);
|
||||
$suffix = Text::plural($field->params->get('suffix'), $value);
|
||||
$labelClass = $field->params->get('label_render_class');
|
||||
$valueClass = $field->params->get('value_render_class');
|
||||
|
||||
if ($value == '') {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
$time = strtotime($value);
|
||||
$day = date('d',$time);
|
||||
$month = date('M',$time);
|
||||
$year = date('Y',$time);
|
||||
|
||||
|
||||
?>
|
||||
|
||||
|
||||
<div class="calendar-date-day purplelight">
|
||||
<small><?php echo $year; ?></small>
|
||||
<p class="mb-0"><?php echo $day; ?></p>
|
||||
<small><?php echo $month; ?></small>
|
||||
</div>
|
||||
|
||||
|
||||
@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
if (!array_key_exists('field', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field = $displayData['field'];
|
||||
$label = Text::_($field->label);
|
||||
$value = $field->value;
|
||||
$showLabel = $field->params->get('showlabel');
|
||||
$prefix = Text::plural($field->params->get('prefix'), $value);
|
||||
$suffix = Text::plural($field->params->get('suffix'), $value);
|
||||
$labelClass = $field->params->get('label_render_class');
|
||||
$valueClass = $field->params->get('value_render_class');
|
||||
|
||||
if ($value == '') {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
|
||||
?>
|
||||
|
||||
|
||||
<div class="calendar-date-description rounded">
|
||||
<div class="calendar-date-description-content">
|
||||
<p><?php echo $value; ?></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@ -0,0 +1,51 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
if (!array_key_exists('field', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field = $displayData['field'];
|
||||
$label = Text::_($field->label);
|
||||
$value = $field->value;
|
||||
$showLabel = $field->params->get('showlabel');
|
||||
$prefix = Text::plural($field->params->get('prefix'), $value);
|
||||
$suffix = Text::plural($field->params->get('suffix'), $value);
|
||||
$labelClass = $field->params->get('label_render_class');
|
||||
$valueClass = $field->params->get('value_render_class');
|
||||
|
||||
// Ottengo l'ID del campo
|
||||
$fieldid = $field->id;
|
||||
$idelm = 'id="art-par-'.$fieldid.'"';
|
||||
|
||||
if ($value == '') {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
?>
|
||||
<?php if ($showLabel == 1) : ?>
|
||||
<h2 class="h4 <?php echo $labelClass; ?>" <?php echo $idelm; ?>><?php echo htmlentities($label, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?> </h2>
|
||||
<?php endif; ?>
|
||||
<div class="card card-bg in-evidence rounded mb-5">
|
||||
<div class="card-body pb-0">
|
||||
<?php if ($prefix) : ?>
|
||||
<span class="field-prefix"><?php echo htmlentities($prefix, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></span>
|
||||
<?php endif; ?>
|
||||
<?php echo $value; ?>
|
||||
<?php if ($suffix) : ?>
|
||||
<span class="field-suffix"><?php echo htmlentities($suffix, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></span>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
@ -0,0 +1,58 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
if (!array_key_exists('field', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field = $displayData['field'];
|
||||
$label = Text::_($field->label);
|
||||
$value = $field->value;
|
||||
$showLabel = $field->params->get('showlabel');
|
||||
$prefix = Text::plural($field->params->get('prefix'), $value);
|
||||
$suffix = Text::plural($field->params->get('suffix'), $value);
|
||||
$labelClass = $field->params->get('label_render_class');
|
||||
$valueClass = $field->params->get('value_render_class');
|
||||
|
||||
// Ottengo l'ID del campo
|
||||
$fieldid = $field->id;
|
||||
|
||||
if ($value == '') {
|
||||
return;
|
||||
}
|
||||
|
||||
// Aggiungo ID per il menu indice
|
||||
switch ($label) :
|
||||
case 'Contatti':
|
||||
$idelm = 'id="art-par-05"';
|
||||
break;
|
||||
default:
|
||||
$idelm = 'id="art-par-'.$fieldid.'"';
|
||||
endswitch;
|
||||
|
||||
?>
|
||||
<?php if ($showLabel == 1) : ?>
|
||||
<h2 class="h4 <?php echo $labelClass; ?>" <?php echo $idelm; ?>><?php echo htmlentities($label, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?> </h2>
|
||||
<?php endif; ?>
|
||||
<div class="card card-bg card-servizio purplelight rounded mb-5">
|
||||
<div class="card-body pb-0">
|
||||
<?php if ($prefix) : ?>
|
||||
<span class="field-prefix"><?php echo htmlentities($prefix, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></span>
|
||||
<?php endif; ?>
|
||||
<?php echo $value; ?>
|
||||
<?php if ($suffix) : ?>
|
||||
<span class="field-suffix"><?php echo htmlentities($suffix, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></span>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
@ -0,0 +1,47 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
if (!array_key_exists('field', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field = $displayData['field'];
|
||||
$label = Text::_($field->label);
|
||||
$value = $field->value;
|
||||
$showLabel = $field->params->get('showlabel');
|
||||
$prefix = Text::plural($field->params->get('prefix'), $value);
|
||||
$suffix = Text::plural($field->params->get('suffix'), $value);
|
||||
$labelClass = $field->params->get('label_render_class');
|
||||
$valueClass = $field->params->get('value_render_class');
|
||||
|
||||
if ($value == '') {
|
||||
return;
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
<div class="card card-bg card-servizio purplelight rounded mb-3">
|
||||
<div class="card-body pb-0">
|
||||
<?php if ($showLabel == 1) : ?>
|
||||
<span class="field-label <?php echo $labelClass; ?>"><?php echo htmlentities($label, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?>: </span>
|
||||
<?php endif; ?>
|
||||
<?php if ($prefix) : ?>
|
||||
<span class="field-prefix"><?php echo htmlentities($prefix, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></span>
|
||||
<?php endif; ?>
|
||||
<?php echo $value; ?>
|
||||
<?php if ($suffix) : ?>
|
||||
<span class="field-suffix"><?php echo htmlentities($suffix, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></span>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
if (!array_key_exists('field', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field = $displayData['field'];
|
||||
$label = Text::_($field->label);
|
||||
$value = $field->value;
|
||||
$showLabel = $field->params->get('showlabel');
|
||||
$prefix = Text::plural($field->params->get('prefix'), $value);
|
||||
$suffix = Text::plural($field->params->get('suffix'), $value);
|
||||
$labelClass = $field->params->get('label_render_class');
|
||||
$valueClass = $field->params->get('value_render_class');
|
||||
|
||||
if ($value == '') {
|
||||
return;
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
<small class="h6 text-greendark"><?php echo htmlentities($label, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?>: <?php echo $value; ?></small>
|
||||
|
||||
|
||||
|
||||
@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
if (!array_key_exists('field', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field = $displayData['field'];
|
||||
$label = Text::_($field->label);
|
||||
$value = $field->value;
|
||||
$showLabel = $field->params->get('showlabel');
|
||||
$prefix = Text::plural($field->params->get('prefix'), $value);
|
||||
$suffix = Text::plural($field->params->get('suffix'), $value);
|
||||
$labelClass = $field->params->get('label_render_class');
|
||||
$valueClass = $field->params->get('value_render_class');
|
||||
|
||||
// Ottengo l'ID del campo
|
||||
$fieldid = $field->id;
|
||||
|
||||
if ($value == '') {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
|
||||
?>
|
||||
|
||||
<div class="mb-5">
|
||||
<?php echo $value; ?>
|
||||
</div>
|
||||
@ -0,0 +1,58 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
if (!array_key_exists('field', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field = $displayData['field'];
|
||||
$label = Text::_($field->label);
|
||||
$value = $field->value;
|
||||
$showLabel = $field->params->get('showlabel');
|
||||
$prefix = Text::plural($field->params->get('prefix'), $value);
|
||||
$suffix = Text::plural($field->params->get('suffix'), $value);
|
||||
$labelClass = $field->params->get('label_render_class');
|
||||
$valueClass = $field->params->get('value_render_class');
|
||||
|
||||
// Ottengo l'ID del campo
|
||||
$fieldid = $field->id;
|
||||
|
||||
if ($value == '') {
|
||||
return;
|
||||
}
|
||||
|
||||
// Aggiungo ID per il menu indice
|
||||
switch ($label) :
|
||||
case 'Contatti':
|
||||
$idelm = 'id="art-par-05"';
|
||||
break;
|
||||
default:
|
||||
$idelm = 'id="art-par-'.$fieldid.'"';
|
||||
endswitch;
|
||||
|
||||
?>
|
||||
<?php if ($showLabel == 1) : ?>
|
||||
<h2 class="h4 <?php echo $labelClass; ?>" <?php echo $idelm; ?>><?php echo htmlentities($label, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?> </h2>
|
||||
<?php endif; ?>
|
||||
<div class="card card-bg rounded mb-5 bg-color">
|
||||
<div class="card-body pb-0">
|
||||
<?php if ($prefix) : ?>
|
||||
<span class="field-prefix"><?php echo htmlentities($prefix, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></span>
|
||||
<?php endif; ?>
|
||||
<p class="mb-0"><?php echo $value; ?></p>
|
||||
<?php if ($suffix) : ?>
|
||||
<span class="field-suffix"><?php echo htmlentities($suffix, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></span>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
@ -0,0 +1,90 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
if (!array_key_exists('field', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field = $displayData['field'];
|
||||
$label = Text::_($field->label);
|
||||
$value = $field->value;
|
||||
$showLabel = $field->params->get('showlabel');
|
||||
$prefix = Text::plural($field->params->get('prefix'), $value);
|
||||
$suffix = Text::plural($field->params->get('suffix'), $value);
|
||||
$labelClass = $field->params->get('label_render_class');
|
||||
$valueClass = $field->params->get('value_render_class');
|
||||
|
||||
// Ottengo l'ID del campo
|
||||
$fieldid = $field->id;
|
||||
|
||||
if ($value == '') {
|
||||
return;
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
<?php
|
||||
// Aggiungo data element
|
||||
switch ($label) :
|
||||
case 'Cos\'è':
|
||||
$dtelm = 'data-element="service-what-is"';
|
||||
break;
|
||||
case 'A cosa serve':
|
||||
$dtelm = 'data-element="used-for"';
|
||||
break;
|
||||
case 'Cosa serve':
|
||||
$dtelm = 'data-element="service-needed"';
|
||||
break;
|
||||
case 'Tempi e scadenze':
|
||||
$dtelm = 'data-element="service-calendar-text"';
|
||||
break;
|
||||
case 'Ulteriori informazioni':
|
||||
$dtelm = 'data-element="service-more-info"';
|
||||
break;
|
||||
default:
|
||||
$dtelm = '';
|
||||
endswitch;
|
||||
|
||||
// Aggiungo ID per il menu indice
|
||||
switch ($label) :
|
||||
case 'Cos\'è':
|
||||
$idelm = 'id="art-par-01"';
|
||||
break;
|
||||
case 'Cosa serve':
|
||||
$idelm = 'id="art-par-03"';
|
||||
break;
|
||||
case 'Tempi e scadenze':
|
||||
$idelm = 'id="art-par-04"';
|
||||
break;
|
||||
case 'Ulteriori informazioni':
|
||||
$idelm = 'id="art-par-06"';
|
||||
break;
|
||||
default:
|
||||
$idelm = 'id="art-par-'.$fieldid.'"';
|
||||
endswitch;
|
||||
|
||||
?>
|
||||
|
||||
<div class="cosae mb-2" <?php echo $dtelm; ?>>
|
||||
<h2 class="h4 <?php echo $labelClass; ?>" <?php echo $idelm; ?>><?php echo htmlentities($label, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></h2>
|
||||
<p>
|
||||
<?php if ($prefix) : ?>
|
||||
<span class="field-prefix"><?php echo htmlentities($prefix, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></span>
|
||||
<?php endif; ?>
|
||||
<?php echo $value; ?>
|
||||
<?php if ($suffix) : ?>
|
||||
<span class="field-suffix"><?php echo htmlentities($suffix, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></span>
|
||||
<?php endif; ?>
|
||||
</p>
|
||||
</div>
|
||||
@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
if (!array_key_exists('field', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field = $displayData['field'];
|
||||
$label = Text::_($field->label);
|
||||
$value = $field->value;
|
||||
$showLabel = $field->params->get('showlabel');
|
||||
$prefix = Text::plural($field->params->get('prefix'), $value);
|
||||
$suffix = Text::plural($field->params->get('suffix'), $value);
|
||||
$labelClass = $field->params->get('label_render_class');
|
||||
$valueClass = $field->params->get('value_render_class');
|
||||
|
||||
if ($value == '') {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
$time = strtotime($value);
|
||||
$day = date('d',$time);
|
||||
$month = date('M',$time);
|
||||
$year = date('Y',$time);
|
||||
|
||||
|
||||
?>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="date">
|
||||
<span class="year"><?php echo $year;?></span>
|
||||
<span class="day"><?php echo $day;?></span>
|
||||
<span class="month"><?php echo $month;?></span>
|
||||
</div>
|
||||
@ -0,0 +1,56 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\Uri\Uri;
|
||||
|
||||
if (!array_key_exists('field', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field = $displayData['field'];
|
||||
$label = Text::_($field->label);
|
||||
$value = $field->value;
|
||||
$showLabel = $field->params->get('showlabel');
|
||||
$prefix = Text::plural($field->params->get('prefix'), $value);
|
||||
$suffix = Text::plural($field->params->get('suffix'), $value);
|
||||
$labelClass = $field->params->get('label_render_class');
|
||||
$valueClass = $field->params->get('value_render_class');
|
||||
|
||||
// Ottengo l'ID del campo
|
||||
$fieldid = $field->id;
|
||||
|
||||
if ($value == '') {
|
||||
return;
|
||||
}
|
||||
|
||||
$baseImagePath = Uri::root(false) . "media/templates/site/joomla-italia-theme/images/";
|
||||
|
||||
?>
|
||||
<?php if ($showLabel == 1) : ?>
|
||||
<h4 id="art-par-<?php echo $fieldid; ?>" class="mb-3"><?php echo htmlentities($label, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></h4>
|
||||
<?php endif; ?>
|
||||
<div class="row mb-5">
|
||||
<div class="col-lg-9">
|
||||
<div class="big-data-rounded-icon">
|
||||
<div class="big-data-rounded-icon-wrapper">
|
||||
<svg>
|
||||
<use xlink:href="<?= $baseImagePath ?>sprites.svg#it-map-marker"></use>
|
||||
</svg>
|
||||
</div>
|
||||
<div class="big-data-rounded-icon-content">
|
||||
|
||||
<?php echo $value; ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\Uri\Uri;
|
||||
|
||||
if (!array_key_exists('field', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field = $displayData['field'];
|
||||
$label = Text::_($field->label);
|
||||
$value = $field->value;
|
||||
$showLabel = $field->params->get('showlabel');
|
||||
$prefix = Text::plural($field->params->get('prefix'), $value);
|
||||
$suffix = Text::plural($field->params->get('suffix'), $value);
|
||||
$labelClass = $field->params->get('label_render_class');
|
||||
$valueClass = $field->params->get('value_render_class');
|
||||
|
||||
if ($value == '') {
|
||||
return;
|
||||
}
|
||||
|
||||
$baseImagePath = Uri::root(false) . "media/templates/site/joomla-italia-theme/images/";
|
||||
|
||||
?>
|
||||
|
||||
<div class="col-12 col-lg-6 mb-4">
|
||||
<div class="card card-documento card-bg card-icon rounded h-100">
|
||||
<div class="card-body">
|
||||
<svg class="icon">
|
||||
<use xlink:href="<?= $baseImagePath ?>sprites.svg#it-file-pdf"></use>
|
||||
</svg>
|
||||
<div class="card-icon-content">
|
||||
<strong><?php echo $value; ?></strong>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -0,0 +1,47 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
if (!array_key_exists('field', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field = $displayData['field'];
|
||||
$label = Text::_($field->label);
|
||||
$value = $field->value;
|
||||
$showLabel = $field->params->get('showlabel');
|
||||
$prefix = Text::plural($field->params->get('prefix'), $value);
|
||||
$suffix = Text::plural($field->params->get('suffix'), $value);
|
||||
$labelClass = $field->params->get('label_render_class');
|
||||
$valueClass = $field->params->get('value_render_class');
|
||||
|
||||
// Ottengo l'ID del campo
|
||||
$fieldid = $field->id;
|
||||
|
||||
if ($value == '') {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
|
||||
?>
|
||||
<?php if ($showLabel == 1) : ?>
|
||||
<h4 id="art-par-<?php echo $fieldid; ?>" class="mb-3"><?php echo htmlentities($label, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></h2>
|
||||
<?php endif; ?>
|
||||
<div class="it-carousel-wrapper it-carousel splide mb-5" data-bs-carousel-splide>
|
||||
<div class="splide__track mx-5">
|
||||
<ul class="splide__list it-carousel-all">
|
||||
<?php echo $value; ?>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
if (!array_key_exists('field', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field = $displayData['field'];
|
||||
$label = Text::_($field->label);
|
||||
$value = $field->value;
|
||||
$showLabel = $field->params->get('showlabel');
|
||||
$prefix = Text::plural($field->params->get('prefix'), $value);
|
||||
$suffix = Text::plural($field->params->get('suffix'), $value);
|
||||
$labelClass = $field->params->get('label_render_class');
|
||||
$valueClass = $field->params->get('value_render_class');
|
||||
|
||||
// Ottengo l'ID del campo
|
||||
$fieldid = $field->id;
|
||||
$idelm = 'id="art-par-'.$fieldid.'"';
|
||||
|
||||
if ($value == '') {
|
||||
return;
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
<div class="cosae mb-5">
|
||||
<h2 class="h4 <?php echo $labelClass; ?>" <?php echo $idelm; ?>><?php echo htmlentities($label, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></h2>
|
||||
<p>
|
||||
<?php if ($prefix) : ?>
|
||||
<span class="field-prefix"><?php echo htmlentities($prefix, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></span>
|
||||
<?php endif; ?>
|
||||
<?php echo $value; ?>
|
||||
<?php if ($suffix) : ?>
|
||||
<span class="field-suffix"><?php echo htmlentities($suffix, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></span>
|
||||
<?php endif; ?>
|
||||
</p>
|
||||
</div>
|
||||
@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
if (!array_key_exists('field', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field = $displayData['field'];
|
||||
$label = Text::_($field->label);
|
||||
$value = $field->value;
|
||||
$showLabel = $field->params->get('showlabel');
|
||||
$prefix = Text::plural($field->params->get('prefix'), $value);
|
||||
$suffix = Text::plural($field->params->get('suffix'), $value);
|
||||
$labelClass = $field->params->get('label_render_class');
|
||||
$valueClass = $field->params->get('value_render_class');
|
||||
|
||||
// Ottengo l'ID del campo
|
||||
$fieldid = $field->id;
|
||||
|
||||
if ($value == '') {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
|
||||
?>
|
||||
<?php if ($showLabel == 1) : ?>
|
||||
<h4 id="art-par-<?php echo $fieldid; ?>"><?php echo htmlentities($label, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></h2>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php echo $value; ?>
|
||||
|
||||
@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
if (!array_key_exists('field', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field = $displayData['field'];
|
||||
$label = Text::_($field->label);
|
||||
$value = $field->value;
|
||||
$showLabel = $field->params->get('showlabel');
|
||||
$prefix = Text::plural($field->params->get('prefix'), $value);
|
||||
$suffix = Text::plural($field->params->get('suffix'), $value);
|
||||
$labelClass = $field->params->get('label_render_class');
|
||||
$valueClass = $field->params->get('value_render_class');
|
||||
|
||||
if ($value == '') {
|
||||
return;
|
||||
}
|
||||
|
||||
?>
|
||||
<?php if ($showLabel == 1) : ?>
|
||||
<h3 class="h6"><?php echo htmlentities($label, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></h3>
|
||||
<?php endif; ?>
|
||||
<?php if ($prefix) : ?>
|
||||
<span class="field-prefix"><?php echo htmlentities($prefix, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></span>
|
||||
<?php endif; ?>
|
||||
<div class="bg-redbrown big-quote-wrapper">
|
||||
<div class="container">
|
||||
<div class="row variable-gutters justify-content-center">
|
||||
<div class="col-md-10">
|
||||
<div class="big-quote">
|
||||
<h2><?php echo $value; ?></h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php if ($suffix) : ?>
|
||||
<span class="field-suffix"><?php echo htmlentities($suffix, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></span>
|
||||
<?php endif; ?>
|
||||
@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
if (!array_key_exists('field', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field = $displayData['field'];
|
||||
$label = Text::_($field->label);
|
||||
$value = $field->value;
|
||||
$showLabel = $field->params->get('showlabel');
|
||||
$prefix = Text::plural($field->params->get('prefix'), $value);
|
||||
$suffix = Text::plural($field->params->get('suffix'), $value);
|
||||
$labelClass = $field->params->get('label_render_class');
|
||||
$valueClass = $field->params->get('value_render_class');
|
||||
|
||||
if ($value == '') {
|
||||
return;
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
|
||||
<?php if ($showLabel == 1) : ?>
|
||||
<div class="location-title">
|
||||
<span><?php echo htmlentities($label, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></span>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<div class="big-quote mb-5">
|
||||
<h2><?php echo $value; ?></h2>
|
||||
</div>
|
||||
|
||||
@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
if (!array_key_exists('field', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field = $displayData['field'];
|
||||
$label = Text::_($field->label);
|
||||
$value = $field->value;
|
||||
$showLabel = $field->params->get('showlabel');
|
||||
$prefix = Text::plural($field->params->get('prefix'), $value);
|
||||
$suffix = Text::plural($field->params->get('suffix'), $value);
|
||||
$labelClass = $field->params->get('label_render_class');
|
||||
$valueClass = $field->params->get('value_render_class');
|
||||
|
||||
if ($value == '') {
|
||||
return;
|
||||
}
|
||||
|
||||
?>
|
||||
<li class="splide__slide lined_slide">
|
||||
<div class="it-single-slide-wrapper">
|
||||
<?php echo $value; ?>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
@ -0,0 +1,44 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
if (!array_key_exists('field', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field = $displayData['field'];
|
||||
$label = Text::_($field->label);
|
||||
$value = $field->value;
|
||||
$showLabel = $field->params->get('showlabel');
|
||||
$prefix = Text::plural($field->params->get('prefix'), $value);
|
||||
$suffix = Text::plural($field->params->get('suffix'), $value);
|
||||
$labelClass = $field->params->get('label_render_class');
|
||||
$valueClass = $field->params->get('value_render_class');
|
||||
|
||||
if ($value == '') {
|
||||
return;
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
<li>
|
||||
<?php if ($showLabel == 1) : ?>
|
||||
<div class="location-title">
|
||||
<span><?php echo htmlentities($label, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></span>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<div class="location-content">
|
||||
<p><?php echo str_replace(['<p>', '</p>'], '', $value); ?></p>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
if (!array_key_exists('field', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field = $displayData['field'];
|
||||
$label = Text::_($field->label);
|
||||
$value = $field->value;
|
||||
$showLabel = $field->params->get('showlabel');
|
||||
$prefix = Text::plural($field->params->get('prefix'), $value);
|
||||
$suffix = Text::plural($field->params->get('suffix'), $value);
|
||||
$labelClass = $field->params->get('label_render_class');
|
||||
$valueClass = $field->params->get('value_render_class');
|
||||
|
||||
if ($value == '') {
|
||||
return;
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
<h4><?php echo htmlentities($label, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></h4>
|
||||
|
||||
|
||||
<p><?php echo $value; ?></p>
|
||||
|
||||
@ -0,0 +1,42 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
if (!array_key_exists('field', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field = $displayData['field'];
|
||||
$label = Text::_($field->label);
|
||||
$value = $field->value;
|
||||
$showLabel = $field->params->get('showlabel');
|
||||
$prefix = Text::plural($field->params->get('prefix'), $value);
|
||||
$suffix = Text::plural($field->params->get('suffix'), $value);
|
||||
$labelClass = $field->params->get('label_render_class');
|
||||
$valueClass = $field->params->get('value_render_class');
|
||||
|
||||
if ($value == '') {
|
||||
return;
|
||||
}
|
||||
|
||||
?>
|
||||
<?php if ($showLabel == 1) : ?>
|
||||
<h3 class="h6"><?php echo htmlentities($label, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></h3>
|
||||
<?php endif; ?>
|
||||
<?php if ($prefix) : ?>
|
||||
<span class="field-prefix"><?php echo htmlentities($prefix, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></span>
|
||||
<?php endif; ?>
|
||||
<?php echo $value; ?>
|
||||
<?php if ($suffix) : ?>
|
||||
<span class="field-suffix"><?php echo htmlentities($suffix, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></span>
|
||||
<?php endif; ?>
|
||||
@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
if (!array_key_exists('field', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field = $displayData['field'];
|
||||
$label = Text::_($field->label);
|
||||
$value = $field->value;
|
||||
$showLabel = $field->params->get('showlabel');
|
||||
$prefix = Text::plural($field->params->get('prefix'), $value);
|
||||
$suffix = Text::plural($field->params->get('suffix'), $value);
|
||||
$labelClass = $field->params->get('label_render_class');
|
||||
$valueClass = $field->params->get('value_render_class');
|
||||
|
||||
// Ottengo l'ID del campo
|
||||
$fieldid = $field->id;
|
||||
|
||||
if ($value == '') {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
|
||||
?>
|
||||
|
||||
<div class="bg-redbrown big-quote-wrapper rowstrutture">
|
||||
<div class="container">
|
||||
<div class="row variable-gutters justify-content-center">
|
||||
<div class="col-md-10">
|
||||
<?php echo $value; ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -0,0 +1,90 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
if (!array_key_exists('field', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field = $displayData['field'];
|
||||
$label = Text::_($field->label);
|
||||
$value = $field->value;
|
||||
$showLabel = $field->params->get('showlabel');
|
||||
$prefix = Text::plural($field->params->get('prefix'), $value);
|
||||
$suffix = Text::plural($field->params->get('suffix'), $value);
|
||||
$labelClass = $field->params->get('label_render_class');
|
||||
$valueClass = $field->params->get('value_render_class');
|
||||
|
||||
// Ottengo l'ID del campo
|
||||
$fieldid = $field->id;
|
||||
|
||||
if ($value == '') {
|
||||
return;
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
<?php
|
||||
// Aggiungo data element
|
||||
switch ($label) :
|
||||
case 'Cos\'è':
|
||||
$dtelm = 'data-element="service-what-is"';
|
||||
break;
|
||||
case 'A cosa serve':
|
||||
$dtelm = 'data-element="used-for"';
|
||||
break;
|
||||
case 'Cosa serve':
|
||||
$dtelm = 'data-element="service-needed"';
|
||||
break;
|
||||
case 'Tempi e scadenze':
|
||||
$dtelm = 'data-element="service-calendar-text"';
|
||||
break;
|
||||
case 'Ulteriori informazioni':
|
||||
$dtelm = 'data-element="service-more-info"';
|
||||
break;
|
||||
default:
|
||||
$dtelm = '';
|
||||
endswitch;
|
||||
|
||||
// Aggiungo ID per il menu indice
|
||||
switch ($label) :
|
||||
case 'Cos\'è':
|
||||
$idelm = 'id="art-par-01"';
|
||||
break;
|
||||
case 'Cosa serve':
|
||||
$idelm = 'id="art-par-03"';
|
||||
break;
|
||||
case 'Tempi e scadenze':
|
||||
$idelm = 'id="art-par-04"';
|
||||
break;
|
||||
case 'Ulteriori informazioni':
|
||||
$idelm = 'id="art-par-06"';
|
||||
break;
|
||||
default:
|
||||
$idelm = '';
|
||||
endswitch;
|
||||
|
||||
?>
|
||||
|
||||
<div class="cosae">
|
||||
<h2 class="h4 <?php echo $labelClass; ?>" <?php echo $idelm; ?>><?php echo htmlentities($label, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></h2>
|
||||
<p <?php echo $dtelm; ?>>
|
||||
<?php if ($prefix) : ?>
|
||||
<span class="field-prefix"><?php echo htmlentities($prefix, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></span>
|
||||
<?php endif; ?>
|
||||
<?php echo $value; ?>
|
||||
<?php if ($suffix) : ?>
|
||||
<span class="field-suffix"><?php echo htmlentities($suffix, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></span>
|
||||
<?php endif; ?>
|
||||
</p>
|
||||
</div>
|
||||
@ -0,0 +1,51 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
if (!array_key_exists('field', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field = $displayData['field'];
|
||||
$label = Text::_($field->label);
|
||||
$value = $field->value;
|
||||
$showLabel = $field->params->get('showlabel');
|
||||
$prefix = Text::plural($field->params->get('prefix'), $value);
|
||||
$suffix = Text::plural($field->params->get('suffix'), $value);
|
||||
$labelClass = $field->params->get('label_render_class');
|
||||
$valueClass = $field->params->get('value_render_class');
|
||||
|
||||
// Ottengo l'ID del campo
|
||||
$fieldid = $field->id;
|
||||
$idelm = 'id="art-par-'.$fieldid.'"';
|
||||
|
||||
if ($value == '') {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
?>
|
||||
<?php if ($showLabel == 1) : ?>
|
||||
<h2 class="h4 <?php echo $labelClass; ?>" <?php echo $idelm; ?>><?php echo htmlentities($label, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?> </h2>
|
||||
<?php endif; ?>
|
||||
<div class="card card-bg card-simple rounded mb-5">
|
||||
<div class="card-body pb-0">
|
||||
<?php if ($prefix) : ?>
|
||||
<span class="field-prefix"><?php echo htmlentities($prefix, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></span>
|
||||
<?php endif; ?>
|
||||
<?php echo $value; ?>
|
||||
<?php if ($suffix) : ?>
|
||||
<span class="field-suffix"><?php echo htmlentities($suffix, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></span>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
@ -0,0 +1,84 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
if (!array_key_exists('field', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field = $displayData['field'];
|
||||
$label = Text::_($field->label);
|
||||
$value = $field->value;
|
||||
$showLabel = $field->params->get('showlabel');
|
||||
$prefix = Text::plural($field->params->get('prefix'), $value);
|
||||
$suffix = Text::plural($field->params->get('suffix'), $value);
|
||||
$labelClass = $field->params->get('label_render_class');
|
||||
$valueClass = $field->params->get('value_render_class');
|
||||
|
||||
// Ottengo l'ID del campo
|
||||
$fieldid = $field->id;
|
||||
|
||||
if ($value == '') {
|
||||
return;
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
<div class="bg-blue-dark section section-padding timeline">
|
||||
<div class="container">
|
||||
|
||||
<div class="it-carousel-wrapper it-carousel-landscape-abstract-three-cols it-carousel-landscape-abstract-three-cols-arrow-visible splide" data-bs-carousel-splide>
|
||||
<?php if ($showLabel == 1) : ?>
|
||||
<div class="it-header-block">
|
||||
<div class="it-header-block-title text-center">
|
||||
<h3 class="mb-4"><?php echo htmlentities($label, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></h2>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<div class="splide__track ps-lg-3 pe-lg-3">
|
||||
<ul class="splide__list it-carousel-all">
|
||||
<?php foreach($field->subform_rows as $row){ ?>
|
||||
<li class="splide__slide">
|
||||
<div class="it-single-slide-wrapper">
|
||||
<div class="card-wrapper card-space" style="background:unset!important;">
|
||||
<div class="card card-serif card-bg" style="background:unset!important;">
|
||||
<div class="card-body">
|
||||
|
||||
<?php
|
||||
$i=0;
|
||||
foreach((array)$row as $subrow): ?>
|
||||
<?php if($i == 0): ?>
|
||||
<div class="h5"><?php echo $subrow->value; ?></div>
|
||||
<?php elseif($i == 1): ?>
|
||||
<h3><?php echo $subrow->value; ?></h3>
|
||||
<?php elseif($i == 2): ?>
|
||||
<p><?php echo $subrow->value; ?></p>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php
|
||||
$i++;
|
||||
endforeach;
|
||||
?>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<?php } ?>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
if (!array_key_exists('field', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field = $displayData['field'];
|
||||
$label = Text::_($field->label);
|
||||
$value = $field->value;
|
||||
$showLabel = $field->params->get('showlabel');
|
||||
$prefix = Text::plural($field->params->get('prefix'), $value);
|
||||
$suffix = Text::plural($field->params->get('suffix'), $value);
|
||||
$labelClass = $field->params->get('label_render_class');
|
||||
$valueClass = $field->params->get('value_render_class');
|
||||
|
||||
if ($value == '') {
|
||||
return;
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
<h3><?php echo $value; ?></h3>
|
||||
@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
if (!array_key_exists('field', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$field = $displayData['field'];
|
||||
$label = Text::_($field->label);
|
||||
$value = $field->value;
|
||||
$showLabel = $field->params->get('showlabel');
|
||||
$prefix = Text::plural($field->params->get('prefix'), $value);
|
||||
$suffix = Text::plural($field->params->get('suffix'), $value);
|
||||
$labelClass = $field->params->get('label_render_class');
|
||||
$valueClass = $field->params->get('value_render_class');
|
||||
|
||||
// Ottengo l'ID del campo
|
||||
$fieldid = $field->id;
|
||||
|
||||
if ($value == '') {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
|
||||
?>
|
||||
<?php if ($showLabel == 1) : ?>
|
||||
<h2 class="h6" id="art-par-<?php echo $fieldid; ?>"><?php echo htmlentities($label, ENT_QUOTES | ENT_IGNORE, 'UTF-8'); ?></h2>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php echo $value; ?>
|
||||
|
||||
@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_fields
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\Component\Fields\Administrator\Helper\FieldsHelper;
|
||||
|
||||
// Check if we have all the data
|
||||
if (!array_key_exists('item', $displayData) || !array_key_exists('context', $displayData)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Setting up for display
|
||||
$item = $displayData['item'];
|
||||
|
||||
if (!$item) {
|
||||
return;
|
||||
}
|
||||
|
||||
$context = $displayData['context'];
|
||||
|
||||
if (!$context) {
|
||||
return;
|
||||
}
|
||||
|
||||
$parts = explode('.', $context);
|
||||
$component = $parts[0];
|
||||
$fields = null;
|
||||
|
||||
if (array_key_exists('fields', $displayData)) {
|
||||
$fields = $displayData['fields'];
|
||||
} else {
|
||||
$fields = $item->jcfields ?: FieldsHelper::getFields($context, $item, true);
|
||||
}
|
||||
|
||||
if (empty($fields)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$output = [];
|
||||
|
||||
foreach ($fields as $field) {
|
||||
// If the value is empty do nothing
|
||||
if (!isset($field->value) || trim($field->value) === '') {
|
||||
continue;
|
||||
}
|
||||
|
||||
$class = $field->name . ' ' . $field->params->get('render_class');
|
||||
$layout = $field->params->get('layout', 'render');
|
||||
$content = FieldsHelper::render($context, 'field.' . $layout, ['field' => $field]);
|
||||
|
||||
// If the content is empty do nothing
|
||||
if (trim($content) === '') {
|
||||
continue;
|
||||
}
|
||||
|
||||
$output[] = $content;
|
||||
}
|
||||
|
||||
if (empty($output)) {
|
||||
return;
|
||||
}
|
||||
?>
|
||||
<div class="fields-container">
|
||||
<?php echo implode("\n", $output); ?>
|
||||
</div>
|
||||
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
$items = $displayData;
|
||||
|
||||
if (!empty($items)) : ?>
|
||||
<ul class="item-associations">
|
||||
<?php foreach ($items as $id => $item) : ?>
|
||||
<?php if (is_array($item) && isset($item['link'])) : ?>
|
||||
<li>
|
||||
<?php echo $item['link']; ?>
|
||||
</li>
|
||||
<?php elseif (isset($item->link)) : ?>
|
||||
<li>
|
||||
<?php echo $item->link; ?>
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
<?php endforeach; ?>
|
||||
</ul>
|
||||
<?php endif; ?>
|
||||
@ -0,0 +1,51 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\Router\Route;
|
||||
use Joomla\Component\Content\Site\Helper\RouteHelper;
|
||||
|
||||
// Create a shortcut for params.
|
||||
$params = $displayData->params;
|
||||
$canEdit = $displayData->params->get('access-edit');
|
||||
|
||||
$currentDate = Factory::getDate()->format('Y-m-d H:i:s');
|
||||
$link = RouteHelper::getArticleRoute($displayData->slug, $displayData->catid, $displayData->language);
|
||||
?>
|
||||
<?php if ($displayData->state == 0 || $params->get('show_title') || ($params->get('show_author') && !empty($displayData->author))) : ?>
|
||||
<div class="blogitem-header">
|
||||
<?php if ($params->get('show_title')) : ?>
|
||||
<h3 itemprop="name">
|
||||
<?php if ($params->get('link_titles') && ($params->get('access-view') || $params->get('show_noauth', '0') == '1')) : ?>
|
||||
<a href="<?php echo Route::_($link); ?>" itemprop="url">
|
||||
<?php echo $this->escape($displayData->title); ?>
|
||||
</a>
|
||||
<?php else : ?>
|
||||
<?php echo $this->escape($displayData->title); ?>
|
||||
<?php endif; ?>
|
||||
</h3>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($displayData->state == 0) : ?>
|
||||
<span class="badge bg-warning"><?php echo Text::_('JUNPUBLISHED'); ?></span>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($displayData->publish_up > $currentDate) : ?>
|
||||
<span class="badge bg-warning"><?php echo Text::_('JNOTPUBLISHEDYET'); ?></span>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($displayData->publish_down !== null && $displayData->publish_down < $currentDate) : ?>
|
||||
<span class="badge bg-warning"><?php echo Text::_('JEXPIRED'); ?></span>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
@ -0,0 +1,51 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\Router\Route;
|
||||
use Joomla\Component\Content\Site\Helper\RouteHelper;
|
||||
|
||||
// Create a shortcut for params.
|
||||
$params = $displayData->params;
|
||||
$canEdit = $displayData->params->get('access-edit');
|
||||
|
||||
$currentDate = Factory::getDate()->format('d-m-Y H:i:s');
|
||||
$link = RouteHelper::getArticleRoute($displayData->slug, $displayData->catid, $displayData->language);
|
||||
?>
|
||||
<?php if ($displayData->state == 0 || $params->get('show_title') || ($params->get('show_author') && !empty($displayData->author))) : ?>
|
||||
<div class="blogitem-header">
|
||||
<?php if ($params->get('show_title')) : ?>
|
||||
<h3 itemprop="name">
|
||||
<?php if ($params->get('link_titles') && ($params->get('access-view') || $params->get('show_noauth', '0') == '1')) : ?>
|
||||
<a href="<?php echo Route::_($link); ?>" itemprop="url">
|
||||
<?php echo $this->escape($displayData->title); ?>
|
||||
</a>
|
||||
<?php else : ?>
|
||||
<?php echo $this->escape($displayData->title); ?>
|
||||
<?php endif; ?>
|
||||
</h3>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($displayData->state == 0) : ?>
|
||||
<span class="badge bg-warning"><?php echo Text::_('JUNPUBLISHED'); ?></span>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($displayData->publish_up > $currentDate) : ?>
|
||||
<span class="badge bg-warning"><?php echo Text::_('JNOTPUBLISHEDYET'); ?></span>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($displayData->publish_down !== null && $displayData->publish_down < $currentDate) : ?>
|
||||
<span class="badge bg-warning"><?php echo Text::_('JEXPIRED'); ?></span>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
@ -0,0 +1,51 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\Router\Route;
|
||||
use Joomla\Component\Content\Site\Helper\RouteHelper;
|
||||
|
||||
// Create a shortcut for params.
|
||||
$params = $displayData->params;
|
||||
$canEdit = $displayData->params->get('access-edit');
|
||||
|
||||
$currentDate = Factory::getDate()->format('Y-m-d H:i:s');
|
||||
$link = RouteHelper::getArticleRoute($displayData->slug, $displayData->catid, $displayData->language);
|
||||
?>
|
||||
<?php if ($displayData->state == 0 || $params->get('show_title') || ($params->get('show_author') && !empty($displayData->author))) : ?>
|
||||
|
||||
<?php if ($params->get('show_title')) : ?>
|
||||
<h2 class="h3">
|
||||
<?php if ($params->get('link_titles') && ($params->get('access-view') || $params->get('show_noauth', '0') == '1')) : ?>
|
||||
<a href="<?php echo Route::_($link); ?>" aria-label="Vai alla Scheda <?php echo $this->escape($displayData->title); ?>" data-element="service-link">
|
||||
<?php echo $this->escape($displayData->title); ?>
|
||||
</a>
|
||||
<?php else : ?>
|
||||
<?php echo $this->escape($displayData->title); ?>
|
||||
<?php endif; ?>
|
||||
</h2>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($displayData->state == 0) : ?>
|
||||
<span class="badge bg-warning"><?php echo Text::_('JUNPUBLISHED'); ?></span>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($displayData->publish_up > $currentDate) : ?>
|
||||
<span class="badge bg-warning"><?php echo Text::_('JNOTPUBLISHEDYET'); ?></span>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($displayData->publish_down !== null && $displayData->publish_down < $currentDate) : ?>
|
||||
<span class="badge bg-warning"><?php echo Text::_('JEXPIRED'); ?></span>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php endif; ?>
|
||||
@ -0,0 +1,57 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\Router\Route;
|
||||
use Joomla\Component\Content\Site\Helper\RouteHelper;
|
||||
|
||||
// Create a shortcut for params.
|
||||
$params = $displayData->params;
|
||||
$canEdit = $displayData->params->get('access-edit');
|
||||
|
||||
$currentDate = Factory::getDate()->format('Y-m-d H:i:s');
|
||||
$link = RouteHelper::getArticleRoute($displayData->slug, $displayData->catid, $displayData->language);
|
||||
?>
|
||||
<?php if ($displayData->state == 0 || $params->get('show_title') || ($params->get('show_author') && !empty($displayData->author))) : ?>
|
||||
<div class="blogitem-header">
|
||||
<?php if ($params->get('show_title')) : ?>
|
||||
|
||||
<?php if ($params->get('link_titles') && ($params->get('access-view') || $params->get('show_noauth', '0') == '1')) : ?>
|
||||
|
||||
<p class="mb-0 lh100">
|
||||
<strong><?php echo $this->escape($displayData->title); ?></strong>
|
||||
</p>
|
||||
|
||||
<?php else : ?>
|
||||
<p class="mb-0 lh100">
|
||||
<strong><?php echo $this->escape($displayData->title); ?></strong>
|
||||
</p>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($displayData->state == 0) : ?>
|
||||
<span class="badge bg-warning"><?php echo Text::_('JUNPUBLISHED'); ?></span>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($displayData->publish_up > $currentDate) : ?>
|
||||
<span class="badge bg-warning"><?php echo Text::_('JNOTPUBLISHEDYET'); ?></span>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($displayData->publish_down !== null && $displayData->publish_down < $currentDate) : ?>
|
||||
<span class="badge bg-warning"><?php echo Text::_('JEXPIRED'); ?></span>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
|
||||
@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
|
||||
?>
|
||||
<?php if ($displayData->params->get('show_page_heading')) : ?>
|
||||
<h1>
|
||||
<?php echo $displayData->escape($displayData->params->get('page_heading')); ?>
|
||||
</h1>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($displayData->params->get('show_base_description')) : ?>
|
||||
<?php // If there is a description in the menu parameters use that; ?>
|
||||
<?php if ($displayData->params->get('categories_description')) : ?>
|
||||
<div class="category-desc base-desc">
|
||||
<?php echo HTMLHelper::_('content.prepare', $displayData->params->get('categories_description'), '', $displayData->get('extension') . '.categories'); ?>
|
||||
</div>
|
||||
<?php else : ?>
|
||||
<?php // Otherwise get one from the database if it exists. ?>
|
||||
<?php if ($displayData->parent->description) : ?>
|
||||
<div class="category-desc base-desc">
|
||||
<?php echo HTMLHelper::_('content.prepare', $displayData->parent->description, '', $displayData->parent->extension . '.categories'); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
$class = ' class="first"';
|
||||
|
||||
$item = $displayData->item;
|
||||
$items = $displayData->get('items');
|
||||
$params = $displayData->params;
|
||||
$extension = $displayData->get('extension');
|
||||
$className = substr($extension, 4);
|
||||
|
||||
// This will work for the core components but not necessarily for other components
|
||||
// that may have different pluralisation rules.
|
||||
if (substr($className, -1) === 's') {
|
||||
$className = rtrim($className, 's');
|
||||
}
|
||||
@ -0,0 +1,102 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\Layout\LayoutHelper;
|
||||
|
||||
/**
|
||||
* Note that this layout opens a div with the page class suffix. If you do not use the category children
|
||||
* layout you need to close this div either by overriding this file or in your main layout.
|
||||
*/
|
||||
$params = $displayData->params;
|
||||
$category = $displayData->get('category');
|
||||
$extension = $category->extension;
|
||||
$canEdit = $params->get('access-edit');
|
||||
$className = substr($extension, 4);
|
||||
$htag = $params->get('show_page_heading') ? 'h2' : 'h1';
|
||||
|
||||
$app = Factory::getApplication();
|
||||
|
||||
$category->text = $category->description;
|
||||
$app->triggerEvent('onContentPrepare', [$extension . '.categories', &$category, &$params, 0]);
|
||||
$category->description = $category->text;
|
||||
|
||||
$results = $app->triggerEvent('onContentAfterTitle', [$extension . '.categories', &$category, &$params, 0]);
|
||||
$afterDisplayTitle = trim(implode("\n", $results));
|
||||
|
||||
$results = $app->triggerEvent('onContentBeforeDisplay', [$extension . '.categories', &$category, &$params, 0]);
|
||||
$beforeDisplayContent = trim(implode("\n", $results));
|
||||
|
||||
$results = $app->triggerEvent('onContentAfterDisplay', [$extension . '.categories', &$category, &$params, 0]);
|
||||
$afterDisplayContent = trim(implode("\n", $results));
|
||||
|
||||
/**
|
||||
* This will work for the core components but not necessarily for other components
|
||||
* that may have different pluralisation rules.
|
||||
*/
|
||||
if (substr($className, -1) === 's') {
|
||||
$className = rtrim($className, 's');
|
||||
}
|
||||
|
||||
$tagsData = $category->tags->itemTags;
|
||||
?>
|
||||
<div class="<?php echo $className . '-category' . $displayData->pageclass_sfx; ?>">
|
||||
<?php if ($params->get('show_page_heading')) : ?>
|
||||
<h1>
|
||||
<?php echo $displayData->escape($params->get('page_heading')); ?>
|
||||
</h1>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($params->get('show_category_title', 1)) : ?>
|
||||
<<?php echo $htag; ?>>
|
||||
<?php echo HTMLHelper::_('content.prepare', $category->title, '', $extension . '.category.title'); ?>
|
||||
</<?php echo $htag; ?>>
|
||||
<?php endif; ?>
|
||||
<?php echo $afterDisplayTitle; ?>
|
||||
|
||||
<?php if ($params->get('show_cat_tags', 1)) : ?>
|
||||
<?php echo LayoutHelper::render('joomla.content.tags', $tagsData); ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($beforeDisplayContent || $afterDisplayContent || $params->get('show_description', 1) || $params->def('show_description_image', 1)) : ?>
|
||||
<div class="category-desc">
|
||||
<?php if ($params->get('show_description_image') && $category->getParams()->get('image')) : ?>
|
||||
<?php echo LayoutHelper::render(
|
||||
'joomla.html.image',
|
||||
[
|
||||
'src' => $category->getParams()->get('image'),
|
||||
'alt' => empty($category->getParams()->get('image_alt')) && empty($category->getParams()->get('image_alt_empty')) ? false : $category->getParams()->get('image_alt'),
|
||||
]
|
||||
); ?>
|
||||
<?php endif; ?>
|
||||
<?php echo $beforeDisplayContent; ?>
|
||||
<?php if ($params->get('show_description') && $category->description) : ?>
|
||||
<?php echo HTMLHelper::_('content.prepare', $category->description, '', $extension . '.category.description'); ?>
|
||||
<?php endif; ?>
|
||||
<?php echo $afterDisplayContent; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php echo $displayData->loadTemplate($displayData->subtemplatename); ?>
|
||||
|
||||
<?php if ($displayData->maxLevel != 0 && $displayData->get('children')) : ?>
|
||||
<div class="cat-children">
|
||||
<?php if ($params->get('show_category_heading_title_text', 1) == 1) : ?>
|
||||
<h3>
|
||||
<?php echo Text::_('JGLOBAL_SUBCATEGORIES'); ?>
|
||||
</h3>
|
||||
<?php endif; ?>
|
||||
<?php echo $displayData->loadTemplate('children'); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
@ -0,0 +1,64 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2021 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\Router\Route;
|
||||
|
||||
$textPrefix = $displayData['textPrefix'] ?? '';
|
||||
|
||||
if (!$textPrefix) {
|
||||
$textPrefix = strtoupper(Factory::getApplication()->input->get('option'));
|
||||
}
|
||||
|
||||
$formURL = $displayData['formURL'] ?? '';
|
||||
$createURL = $displayData['createURL'] ?? '';
|
||||
$helpURL = $displayData['helpURL'] ?? '';
|
||||
$title = $displayData['title'] ?? Text::_($textPrefix . '_EMPTYSTATE_TITLE');
|
||||
$content = $displayData['content'] ?? Text::_($textPrefix . '_EMPTYSTATE_CONTENT');
|
||||
$icon = $displayData['icon'] ?? 'icon-copy article';
|
||||
$append = $displayData['formAppend'] ?? '';
|
||||
$btnadd = $displayData['btnadd'] ?? Text::_($textPrefix . '_EMPTYSTATE_BUTTON_ADD');
|
||||
?>
|
||||
|
||||
<form action="<?php echo Route::_($formURL); ?>" method="post" name="adminForm" id="adminForm">
|
||||
|
||||
<div class="px-4 py-5 my-5 text-center">
|
||||
<span class="fa-8x mb-4 <?php echo $icon; ?>" aria-hidden="true"></span>
|
||||
<h1 class="display-5 fw-bold"><?php echo $title; ?></h1>
|
||||
<div class="col-lg-6 mx-auto">
|
||||
<p class="lead mb-4">
|
||||
<?php echo $content; ?>
|
||||
</p>
|
||||
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center">
|
||||
<?php if ($createURL && Factory::getApplication()->input->get('tmpl') !== 'component') : ?>
|
||||
<a href="<?php echo Route::_($createURL); ?>"
|
||||
id="confirmButton" class="btn btn-primary btn-lg px-4 me-sm-3 emptystate-btnadd"><?php echo $btnadd; ?></a>
|
||||
<?php endif; ?>
|
||||
<?php if ($helpURL) : ?>
|
||||
<a href="<?php echo $helpURL; ?>" target="_blank"
|
||||
class="btn btn-outline-secondary btn-lg px-4"><?php echo Text::_('JGLOBAL_LEARN_MORE'); ?></a>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
// Allow appending any modals (Eg: Bulk Import on com_redirect).
|
||||
echo $append;
|
||||
?>
|
||||
|
||||
<input type="hidden" name="task" value="">
|
||||
<input type="hidden" name="boxchecked" value="0">
|
||||
<?php echo HTMLHelper::_('form.token'); ?>
|
||||
</form>
|
||||
@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2021 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
$icon = $displayData['icon'] ?? 'icon-copy article';
|
||||
$textPrefix = $displayData['textPrefix'] ?? '';
|
||||
$textSuffix = $displayData['textSuffix'] ?? '';
|
||||
$title = $displayData['title'] ?? '';
|
||||
$componentLangString = $textPrefix . '_EMPTYSTATE_TITLE' . $textSuffix;
|
||||
$moduleLangString = $textPrefix . '_EMPTYSTATE_MODULE_TITLE' . $textSuffix;
|
||||
|
||||
// Did we have a definitive title provided to the view? If not, let's find one!
|
||||
if (!$title) {
|
||||
// Can we find a *_EMPTYSTATE_MODULE_TITLE translation, Else use the components *_EMPTYSTATE_TITLE string
|
||||
$title = Factory::getApplication()->getLanguage()->hasKey($moduleLangString) ? $moduleLangString : $componentLangString;
|
||||
}
|
||||
?>
|
||||
<div class="mb-4">
|
||||
<p class="fw-bold text-center text-muted">
|
||||
<span class="<?php echo $icon; ?>" aria-hidden="true"></span> <?php echo Text::_($title); ?>
|
||||
</p>
|
||||
</div>
|
||||
@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Layout\LayoutHelper;
|
||||
|
||||
$params = $displayData->params;
|
||||
$images = json_decode($displayData->images);
|
||||
|
||||
if (empty($images->image_fulltext)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$imgclass = empty($images->float_fulltext) ? $params->get('float_fulltext') : $images->float_fulltext;
|
||||
$layoutAttr = [
|
||||
'src' => $images->image_fulltext,
|
||||
'itemprop' => 'image',
|
||||
'alt' => empty($images->image_fulltext_alt) && empty($images->image_fulltext_alt_empty) ? false : $images->image_fulltext_alt,
|
||||
];
|
||||
?>
|
||||
<figure class="<?php echo $this->escape($imgclass); ?> item-image">
|
||||
<?php echo LayoutHelper::render('joomla.html.image', $layoutAttr); ?>
|
||||
<?php if (isset($images->image_fulltext_caption) && $images->image_fulltext_caption !== '') : ?>
|
||||
<figcaption class="caption"><?php echo $this->escape($images->image_fulltext_caption); ?></figcaption>
|
||||
<?php endif; ?>
|
||||
</figure>
|
||||
@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
|
||||
$canEdit = $displayData['params']->get('access-edit');
|
||||
$articleId = $displayData['item']->id;
|
||||
?>
|
||||
|
||||
<?php if ($canEdit) : ?>
|
||||
<div class="icons">
|
||||
<div class="float-end">
|
||||
<div>
|
||||
<?php echo HTMLHelper::_('icon.edit', $displayData['item'], $displayData['params']); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
* @deprecated 5.0 without replacement
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
$params = $displayData['params'];
|
||||
|
||||
?>
|
||||
<?php if ($params->get('show_icons')) : ?>
|
||||
<span class="icon-plus icon-fw" aria-hidden="true"></span>
|
||||
<?php echo Text::_('JNEW'); ?>
|
||||
<?php else : ?>
|
||||
<?php echo Text::_('JNEW') . ' '; ?>
|
||||
<?php endif; ?>
|
||||
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
$article = $displayData['article'];
|
||||
$tooltip = $displayData['tooltip'];
|
||||
$nowDate = strtotime(Factory::getDate());
|
||||
|
||||
$icon = $article->state ? 'edit' : 'eye-slash';
|
||||
$currentDate = Factory::getDate()->format('Y-m-d H:i:s');
|
||||
$isUnpublished = ($article->publish_up > $currentDate)
|
||||
|| !is_null($article->publish_down) && ($article->publish_down < $currentDate);
|
||||
|
||||
if ($isUnpublished) {
|
||||
$icon = 'eye-slash';
|
||||
}
|
||||
$aria_described = 'editarticle-' . (int) $article->id;
|
||||
|
||||
?>
|
||||
<span class="icon-<?php echo $icon; ?>" aria-hidden="true"></span>
|
||||
<?php echo Text::_('JGLOBAL_EDIT'); ?>
|
||||
<div role="tooltip" id="<?php echo $aria_described; ?>">
|
||||
<?php echo $tooltip; ?>
|
||||
</div>
|
||||
@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
if (isset($displayData['ariaDescribed'])) {
|
||||
$aria_described = $displayData['ariaDescribed'];
|
||||
} elseif (isset($displayData['article'])) {
|
||||
$article = $displayData['article'];
|
||||
$aria_described = 'editarticle-' . (int) $article->id;
|
||||
} elseif (isset($displayData['contact'])) {
|
||||
$contact = $displayData['contact'];
|
||||
$aria_described = 'editcontact-' . (int) $contact->id;
|
||||
}
|
||||
|
||||
$tooltip = $displayData['tooltip'];
|
||||
|
||||
?>
|
||||
<span class="hasTooltip icon-lock" aria-hidden="true"></span>
|
||||
<?php echo Text::_('JLIB_HTML_CHECKED_OUT'); ?>
|
||||
<div role="tooltip" id="<?php echo $aria_described; ?>">
|
||||
<?php echo $tooltip; ?>
|
||||
</div>
|
||||
@ -0,0 +1,70 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2017 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
$blockPosition = $displayData['params']->get('info_block_position', 0);
|
||||
|
||||
?>
|
||||
<dl class="article-info text-muted">
|
||||
|
||||
<?php
|
||||
if (
|
||||
$displayData['position'] === 'above' && ($blockPosition == 0 || $blockPosition == 2)
|
||||
|| $displayData['position'] === 'below' && ($blockPosition == 1)
|
||||
) : ?>
|
||||
<dt class="article-info-term">
|
||||
<?php if ($displayData['params']->get('info_block_show_title', 1)) : ?>
|
||||
<?php echo Text::_('COM_CONTENT_ARTICLE_INFO'); ?>
|
||||
<?php endif; ?>
|
||||
</dt>
|
||||
|
||||
<?php if ($displayData['params']->get('show_author') && !empty($displayData['item']->author)) : ?>
|
||||
<?php echo $this->sublayout('author', $displayData); ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($displayData['params']->get('show_parent_category') && !empty($displayData['item']->parent_id)) : ?>
|
||||
<?php echo $this->sublayout('parent_category', $displayData); ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($displayData['params']->get('show_category')) : ?>
|
||||
<?php echo $this->sublayout('category', $displayData); ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($displayData['params']->get('show_associations')) : ?>
|
||||
<?php echo $this->sublayout('associations', $displayData); ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($displayData['params']->get('show_publish_date')) : ?>
|
||||
<?php echo $this->sublayout('publish_date', $displayData); ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<?php
|
||||
if (
|
||||
$displayData['position'] === 'above' && ($blockPosition == 0)
|
||||
|| $displayData['position'] === 'below' && ($blockPosition == 1 || $blockPosition == 2)
|
||||
) : ?>
|
||||
<?php if ($displayData['params']->get('show_create_date')) : ?>
|
||||
<?php echo $this->sublayout('create_date', $displayData); ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($displayData['params']->get('show_modify_date')) : ?>
|
||||
<?php echo $this->sublayout('modify_date', $displayData); ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($displayData['params']->get('show_hits')) : ?>
|
||||
<?php echo $this->sublayout('hits', $displayData); ?>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
</dl>
|
||||
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\Router\Route;
|
||||
|
||||
?>
|
||||
|
||||
<?php if (!empty($displayData['item']->associations)) : ?>
|
||||
<?php $associations = $displayData['item']->associations; ?>
|
||||
|
||||
<dd class="association">
|
||||
<span class="icon-globe icon-fw" aria-hidden="true"></span>
|
||||
<?php echo Text::_('JASSOCIATIONS'); ?>
|
||||
<?php foreach ($associations as $association) : ?>
|
||||
<?php if ($displayData['item']->params->get('flags', 1) && $association['language']->image) : ?>
|
||||
<?php $flag = HTMLHelper::_('image', 'mod_languages/' . $association['language']->image . '.gif', $association['language']->title_native, ['title' => $association['language']->title_native], true); ?>
|
||||
<a href="<?php echo Route::_($association['item']); ?>"><?php echo $flag; ?></a>
|
||||
<?php else : ?>
|
||||
<?php $class = 'btn btn-secondary btn-sm btn-' . strtolower($association['language']->lang_code); ?>
|
||||
<a class="<?php echo $class; ?>" title="<?php echo $association['language']->title_native; ?>" href="<?php echo Route::_($association['item']); ?>"><?php echo $association['language']->lang_code; ?>
|
||||
<span class="visually-hidden"><?php echo $association['language']->title_native; ?></span>
|
||||
</a>
|
||||
<?php endif; ?>
|
||||
<?php endforeach; ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
?>
|
||||
<dd class="createdby" itemprop="author" itemscope itemtype="https://schema.org/Person">
|
||||
<span class="icon-user icon-fw" aria-hidden="true"></span>
|
||||
<?php $author = ($displayData['item']->created_by_alias ?: $displayData['item']->author); ?>
|
||||
<?php $author = '<span itemprop="name">' . $author . '</span>'; ?>
|
||||
<?php if (!empty($displayData['item']->contact_link) && $displayData['params']->get('link_author') == true) : ?>
|
||||
<?php echo Text::sprintf('COM_CONTENT_WRITTEN_BY', HTMLHelper::_('link', $displayData['item']->contact_link, $author, ['itemprop' => 'url'])); ?>
|
||||
<?php else : ?>
|
||||
<?php echo Text::sprintf('COM_CONTENT_WRITTEN_BY', $author); ?>
|
||||
<?php endif; ?>
|
||||
</dd>
|
||||
@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\Layout\LayoutHelper;
|
||||
use Joomla\CMS\Router\Route;
|
||||
use Joomla\Component\Content\Site\Helper\RouteHelper;
|
||||
|
||||
?>
|
||||
|
||||
<?php $title = $this->escape($displayData['item']->category_title); ?>
|
||||
<?php if ($displayData['params']->get('link_category') && !empty($displayData['item']->catid)) : ?>
|
||||
<?php $url = '<a href="' . Route::_(
|
||||
RouteHelper::getCategoryRoute($displayData['item']->catid, $displayData['item']->category_language)
|
||||
)
|
||||
. '" itemprop="genre">' . $title . '</a>'; ?>
|
||||
<?php echo $url; ?>
|
||||
<?php else : ?>
|
||||
<?php echo '<span itemprop="genre">' . $title . '</span>'; ?>
|
||||
<?php endif; ?>
|
||||
|
||||
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
?>
|
||||
<dd class="create">
|
||||
<span class="icon-calendar icon-fw" aria-hidden="true"></span>
|
||||
<time datetime="<?php echo HTMLHelper::_('date', $displayData['item']->created, 'c'); ?>" itemprop="dateCreated">
|
||||
<?php echo Text::sprintf('COM_CONTENT_CREATED_DATE_ON', HTMLHelper::_('date', $displayData['item']->created, Text::_('DATE_FORMAT_LC3'))); ?>
|
||||
</time>
|
||||
</dd>
|
||||
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
?>
|
||||
<dd class="hits">
|
||||
<span class="icon-eye icon-fw" aria-hidden="true"></span>
|
||||
<meta itemprop="interactionCount" content="UserPageVisits:<?php echo $displayData['item']->hits; ?>">
|
||||
<?php echo Text::sprintf('COM_CONTENT_ARTICLE_HITS', $displayData['item']->hits); ?>
|
||||
</dd>
|
||||
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
?>
|
||||
<dd class="modified">
|
||||
<span class="icon-calendar icon-fw" aria-hidden="true"></span>
|
||||
<time datetime="<?php echo HTMLHelper::_('date', $displayData['item']->modified, 'c'); ?>" itemprop="dateModified">
|
||||
<?php echo Text::sprintf('COM_CONTENT_LAST_UPDATED', HTMLHelper::_('date', $displayData['item']->modified, Text::_('DATE_FORMAT_LC3'))); ?>
|
||||
</time>
|
||||
</dd>
|
||||
@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\Layout\LayoutHelper;
|
||||
use Joomla\CMS\Router\Route;
|
||||
use Joomla\Component\Content\Site\Helper\RouteHelper;
|
||||
|
||||
?>
|
||||
|
||||
|
||||
<?php $title = $this->escape($displayData['item']->parent_title); ?>
|
||||
<?php if ($displayData['params']->get('link_parent_category') && !empty($displayData['item']->parent_id)) : ?>
|
||||
<?php $url = '<a href="' . Route::_(
|
||||
RouteHelper::getCategoryRoute($displayData['item']->parent_id, $displayData['item']->parent_language)
|
||||
)
|
||||
. '" itemprop="genre">' . $title . '</a>'; ?>
|
||||
<?php echo Text::sprintf('COM_CONTENT_PARENT', $url); ?>
|
||||
<?php else : ?>
|
||||
<?php echo Text::sprintf('COM_CONTENT_PARENT', '<span itemprop="genre">' . $title . '</span>'); ?>
|
||||
<?php endif; ?>
|
||||
|
||||
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
?>
|
||||
<dd class="published">
|
||||
<time datetime="<?php echo HTMLHelper::_('date', $displayData['item']->publish_up, 'c'); ?>" itemprop="datePublished">
|
||||
<?php echo Text::sprintf(HTMLHelper::_('date', $displayData['item']->publish_up, Text::_('DATE_FORMAT_LC3'))); ?>
|
||||
</time>
|
||||
</dd>
|
||||
@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Layout\LayoutHelper;
|
||||
use Joomla\CMS\Router\Route;
|
||||
use Joomla\Component\Content\Site\Helper\RouteHelper;
|
||||
|
||||
$params = $displayData->params;
|
||||
$images = json_decode($displayData->images);
|
||||
|
||||
if (empty($images->image_intro)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$imgclass = empty($images->float_intro) ? $params->get('float_intro') : $images->float_intro;
|
||||
$layoutAttr = [
|
||||
'src' => $images->image_intro,
|
||||
'alt' => empty($images->image_intro_alt) && empty($images->image_intro_alt_empty) ? false : $images->image_intro_alt,
|
||||
];
|
||||
?>
|
||||
<figure class="<?php echo $this->escape($imgclass); ?> figure">
|
||||
<?php if ($params->get('link_intro_image') && ($params->get('access-view') || $params->get('show_noauth', '0') == '1')) : ?>
|
||||
<a href="<?php echo Route::_(RouteHelper::getArticleRoute($displayData->slug, $displayData->catid, $displayData->language)); ?>" itemprop="url" title="<?php echo $this->escape($displayData->title); ?>">
|
||||
<?php echo LayoutHelper::render('joomla.html.image', array_merge($layoutAttr, ['itemprop' => 'thumbnailUrl'])); ?>
|
||||
</a>
|
||||
<?php else : ?>
|
||||
<?php echo LayoutHelper::render('joomla.html.image', array_merge($layoutAttr, ['itemprop' => 'thumbnail'])); ?>
|
||||
<?php endif; ?>
|
||||
<?php if (isset($images->image_intro_caption) && $images->image_intro_caption !== '') : ?>
|
||||
<figcaption class="caption"><?php echo $this->escape($images->image_intro_caption); ?></figcaption>
|
||||
<?php endif; ?>
|
||||
</figure>
|
||||
@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Layout\LayoutHelper;
|
||||
use Joomla\CMS\Router\Route;
|
||||
use Joomla\Component\Content\Site\Helper\RouteHelper;
|
||||
|
||||
$params = $displayData->params;
|
||||
$images = json_decode($displayData->images);
|
||||
|
||||
if (empty($images->image_intro)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$imgclass = empty($images->float_intro) ? $params->get('float_intro') : $images->float_intro;
|
||||
$layoutAttr = [
|
||||
'src' => $images->image_intro,
|
||||
'alt' => empty($images->image_intro_alt) && empty($images->image_intro_alt_empty) ? false : $images->image_intro_alt,
|
||||
];
|
||||
?>
|
||||
<figure class="<?php echo $this->escape($imgclass); ?> primopiano-foto img-fit-cover">
|
||||
<?php if ($params->get('link_intro_image') && ($params->get('access-view') || $params->get('show_noauth', '0') == '1')) : ?>
|
||||
<a href="<?php echo Route::_(RouteHelper::getArticleRoute($displayData->slug, $displayData->catid, $displayData->language)); ?>" itemprop="url" title="<?php echo $this->escape($displayData->title); ?>">
|
||||
<?php echo LayoutHelper::render('joomla.html.image', array_merge($layoutAttr, ['itemprop' => 'thumbnailUrl'])); ?>
|
||||
</a>
|
||||
<?php else : ?>
|
||||
<?php echo LayoutHelper::render('joomla.html.image', array_merge($layoutAttr, ['itemprop' => 'thumbnail'])); ?>
|
||||
<?php endif; ?>
|
||||
<?php if (isset($images->image_intro_caption) && $images->image_intro_caption !== '') : ?>
|
||||
<figcaption class="caption"><?php echo $this->escape($images->image_intro_caption); ?></figcaption>
|
||||
<?php endif; ?>
|
||||
</figure>
|
||||
@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
$item = $displayData;
|
||||
|
||||
if ($item->language === '*') {
|
||||
echo Text::alt('JALL', 'language');
|
||||
} elseif ($item->language_image) {
|
||||
echo HTMLHelper::_('image', 'mod_languages/' . $item->language_image . '.gif', '', ['class' => 'me-1'], true) . htmlspecialchars($item->language_title, ENT_COMPAT, 'UTF-8');
|
||||
} elseif ($item->language_title) {
|
||||
echo htmlspecialchars($item->language_title, ENT_COMPAT, 'UTF-8');
|
||||
} else {
|
||||
echo Text::_('JUNDEFINED');
|
||||
}
|
||||
@ -0,0 +1,47 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\Form\FormHelper;
|
||||
|
||||
/** @var Joomla\CMS\WebAsset\WebAssetManager $wa */
|
||||
$wa = Factory::getApplication()->getDocument()->getWebAssetManager();
|
||||
|
||||
?>
|
||||
|
||||
<fieldset class="<?php echo !empty($displayData->formclass) ? $displayData->formclass : ''; ?>">
|
||||
<legend><?php echo $displayData->name; ?></legend>
|
||||
<?php if (!empty($displayData->description)) : ?>
|
||||
<p><?php echo $displayData->description; ?></p>
|
||||
<?php endif; ?>
|
||||
<?php $fieldsnames = explode(',', $displayData->fieldsname); ?>
|
||||
<div class="form-grid">
|
||||
<?php foreach ($fieldsnames as $fieldname) : ?>
|
||||
<?php foreach ($displayData->form->getFieldset($fieldname) as $field) : ?>
|
||||
<?php $datashowon = ''; ?>
|
||||
<?php $groupClass = $field->type === 'Spacer' ? ' field-spacer' : ''; ?>
|
||||
<?php if ($field->showon) : ?>
|
||||
<?php $wa->useScript('showon'); ?>
|
||||
<?php $datashowon = ' data-showon=\'' . json_encode(FormHelper::parseShowOnConditions($field->showon, $field->formControl, $field->group)) . '\''; ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if (isset($displayData->showlabel)) : ?>
|
||||
<div class="control-group<?php echo $groupClass; ?>"<?php echo $datashowon; ?>>
|
||||
<div class="controls"><?php echo $field->input; ?></div>
|
||||
</div>
|
||||
<?php else : ?>
|
||||
<?php echo $field->renderField(); ?>
|
||||
<?php endif; ?>
|
||||
<?php endforeach; ?>
|
||||
<?php endforeach; ?>
|
||||
</div>
|
||||
</fieldset>
|
||||
@ -0,0 +1,58 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2014 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\Uri\Uri;
|
||||
|
||||
$params = $displayData['params'];
|
||||
$item = $displayData['item'];
|
||||
$direction = Factory::getLanguage()->isRtl() ? 'left' : 'right';
|
||||
|
||||
$baseImagePath = Uri::root(false) . "media/templates/site/joomla-italia-theme/images/";
|
||||
?>
|
||||
|
||||
<div class="readmore">
|
||||
<?php if (!$params->get('access-view')) : ?>
|
||||
<a class="leggimore text-uppercase" href="<?php echo $displayData['link']; ?>" aria-label="<?php echo Text::_('JGLOBAL_REGISTER_TO_READ_MORE') . ' ' . $this->escape($item->title); ?>">
|
||||
<?php echo Text::_('JGLOBAL_REGISTER_TO_READ_MORE'); ?>
|
||||
<svg class="icon icon-xs d-inline-block">
|
||||
<use xlink:href="<?= $baseImagePath ?>sprites.svg#it-arrow-right"></use>
|
||||
</svg>
|
||||
</a>
|
||||
<?php elseif ($readmore = $item->alternative_readmore) : ?>
|
||||
<a class="leggimore" href="<?php echo $displayData['link']; ?>" aria-label="<?php echo $this->escape($readmore . ' ' . $item->title); ?>">
|
||||
<?php echo $readmore; ?>
|
||||
<?php if ($params->get('show_readmore_title', 0) != 0) : ?>
|
||||
<?php echo HTMLHelper::_('string.truncate', $item->title, $params->get('readmore_limit')); ?>
|
||||
<?php endif; ?>
|
||||
<svg class="icon icon-xs d-inline-block">
|
||||
<use xlink:href="<?= $baseImagePath ?>sprites.svg#it-arrow-right"></use>
|
||||
</svg>
|
||||
</a>
|
||||
<?php elseif ($params->get('show_readmore_title', 0) == 0) : ?>
|
||||
<a class="leggimore text-uppercase" href="<?php echo $displayData['link']; ?>" aria-label="<?php echo Text::sprintf('JGLOBAL_READ_MORE_TITLE', $this->escape($item->title)); ?>">
|
||||
<?php echo Text::_('JGLOBAL_READ_MORE'); ?>
|
||||
<svg class="icon icon-xs d-inline-block">
|
||||
<use xlink:href="<?= $baseImagePath ?>sprites.svg#it-arrow-right"></use>
|
||||
</svg>
|
||||
</a>
|
||||
<?php else : ?>
|
||||
<a class="leggimore" href="<?php echo $displayData['link']; ?>" aria-label="<?php echo Text::sprintf('JGLOBAL_READ_MORE_TITLE', $this->escape($item->title)); ?>">
|
||||
<?php echo Text::sprintf('JGLOBAL_READ_MORE_TITLE', HTMLHelper::_('string.truncate', $item->title, $params->get('readmore_limit'))); ?>
|
||||
<svg class="icon icon-xs d-inline-block">
|
||||
<use xlink:href="<?= $baseImagePath ?>sprites.svg#it-arrow-right"></use>
|
||||
</svg>
|
||||
</a>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\Router\Route;
|
||||
use Joomla\Component\Tags\Site\Helper\RouteHelper;
|
||||
use Joomla\Registry\Registry;
|
||||
|
||||
$authorised = Factory::getUser()->getAuthorisedViewLevels();
|
||||
|
||||
?>
|
||||
<?php if (!empty($displayData)) : ?>
|
||||
|
||||
<?php foreach ($displayData as $i => $tag) : ?>
|
||||
<?php if (in_array($tag->access, $authorised)) : ?>
|
||||
<?php $tagParams = new Registry($tag->params); ?>
|
||||
<?php $link_class = $tagParams->get('tag_link_class', 'btn-info'); ?>
|
||||
|
||||
<a href="<?php echo Route::_(RouteHelper::getComponentTagRoute($tag->tag_id . ':' . $tag->alias, $tag->language)); ?>" data-element="topic-list" class="badge rounded-pill badge-outline">
|
||||
<?php echo $this->escape($tag->title); ?>
|
||||
</a>
|
||||
|
||||
<?php endif; ?>
|
||||
<?php endforeach; ?>
|
||||
|
||||
<?php endif; ?>
|
||||
@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2017 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
?>
|
||||
|
||||
<fieldset class="<?php echo !empty($displayData->formclass) ? $displayData->formclass : 'form-horizontal'; ?>">
|
||||
<legend><?php echo $displayData->name; ?></legend>
|
||||
<details>
|
||||
<summary class="filter-notes"><?php echo Text::_('COM_CONFIG_TEXT_FILTERS_SUMMARY'); ?></summary>
|
||||
<div class="filter-notes"><?php echo Text::_('COM_CONFIG_TEXT_FILTERS_DESC'); ?></div>
|
||||
</details>
|
||||
<details>
|
||||
<summary class="filter-notes"><?php echo Text::_('JGLOBAL_FILTER_TYPE_LABEL'); ?></summary>
|
||||
<div class="filter-notes"><?php echo Text::_('JGLOBAL_FILTER_TYPE_DESC'); ?></div>
|
||||
</details>
|
||||
<details>
|
||||
<summary class="filter-notes"><?php echo Text::_('JGLOBAL_FILTER_TAGS_LABEL'); ?></summary>
|
||||
<div class="filter-notes"><?php echo Text::_('JGLOBAL_FILTER_TAGS_DESC'); ?></div>
|
||||
</details>
|
||||
<details>
|
||||
<summary class="filter-notes"><?php echo Text::_('JGLOBAL_FILTER_ATTRIBUTES_LABEL'); ?></summary>
|
||||
<div class="filter-notes"><?php echo Text::_('JGLOBAL_FILTER_ATTRIBUTES_DESC'); ?></div>
|
||||
</details>
|
||||
<?php $fieldsnames = explode(',', $displayData->fieldsname); ?>
|
||||
<?php foreach ($fieldsnames as $fieldname) : ?>
|
||||
<?php foreach ($displayData->form->getFieldset($fieldname) as $field) : ?>
|
||||
<div class="table-responsive"><?php echo $field->input; ?></div>
|
||||
<?php endforeach; ?>
|
||||
<?php endforeach; ?>
|
||||
</fieldset>
|
||||
@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2014 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
$buttons = $displayData;
|
||||
|
||||
?>
|
||||
<div class="editor-xtd-buttons" role="toolbar" aria-label="<?php echo Text::_('JTOOLBAR'); ?>">
|
||||
<?php if ($buttons) : ?>
|
||||
<?php foreach ($buttons as $button) : ?>
|
||||
<?php echo $this->sublayout('button', $button); ?>
|
||||
<?php echo $this->sublayout('modal', $button); ?>
|
||||
<?php endforeach; ?>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2014 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Uri\Uri;
|
||||
|
||||
$button = $displayData;
|
||||
|
||||
if ($button->get('name')) :
|
||||
$class = 'btn btn-secondary';
|
||||
$class .= ($button->get('class')) ? ' ' . $button->get('class') : null;
|
||||
$class .= ($button->get('modal')) ? ' modal-button' : null;
|
||||
$href = '#' . $button->get('editor') . '_' . strtolower($button->get('name')) . '_modal';
|
||||
$link = ($button->get('link')) ? Uri::base() . $button->get('link') : null;
|
||||
$onclick = ($button->get('onclick')) ? ' onclick="' . $button->get('onclick') . '"' : '';
|
||||
$title = ($button->get('title')) ? $button->get('title') : $button->get('text');
|
||||
$icon = ($button->get('icon')) ? $button->get('icon') : $button->get('name');
|
||||
?>
|
||||
<button type="button" data-bs-target="<?php echo $href; ?>" class="xtd-button btn btn-secondary <?php echo $class; ?>" <?php echo $button->get('modal') ? 'data-bs-toggle="modal"' : '' ?> title="<?php echo $title; ?>" <?php echo $onclick; ?>>
|
||||
<span class="icon-<?php echo $icon; ?>" aria-hidden="true"></span>
|
||||
<?php echo $button->get('text'); ?>
|
||||
</button>
|
||||
<?php endif; ?>
|
||||
@ -0,0 +1,59 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\Uri\Uri;
|
||||
|
||||
$button = $displayData;
|
||||
|
||||
if (!$button->get('modal')) {
|
||||
return;
|
||||
}
|
||||
|
||||
$class = ($button->get('class')) ? $button->get('class') : null;
|
||||
$class .= ($button->get('modal')) ? ' modal-button' : null;
|
||||
$href = '#' . $button->get('editor') . '_' . strtolower($button->get('name')) . '_modal';
|
||||
$link = ($button->get('link')) ? Uri::base() . $button->get('link') : null;
|
||||
$onclick = ($button->get('onclick')) ? ' onclick="' . $button->get('onclick') . '"' : '';
|
||||
$title = ($button->get('title')) ? $button->get('title') : $button->get('text');
|
||||
$options = is_array($button->get('options')) ? $button->get('options') : [];
|
||||
|
||||
$confirm = '';
|
||||
|
||||
if (is_array($button->get('options')) && isset($options['confirmText']) && isset($options['confirmCallback'])) {
|
||||
$confirm = '<button type="button" class="btn btn-success" data-bs-dismiss="modal" onclick="' . $options['confirmCallback'] . '">'
|
||||
. $options['confirmText'] . ' </button>';
|
||||
}
|
||||
|
||||
if (null !== $button->get('id')) {
|
||||
$id = str_replace(' ', '', $button->get('id'));
|
||||
} else {
|
||||
$id = $button->get('editor') . '_' . strtolower($button->get('name')) . '_modal';
|
||||
}
|
||||
|
||||
// @todo: J4: Move Make buttons fullscreen on smaller devices per https://github.com/joomla/joomla-cms/pull/23091
|
||||
// Create the modal
|
||||
echo HTMLHelper::_(
|
||||
'bootstrap.renderModal',
|
||||
$id,
|
||||
[
|
||||
'url' => $link,
|
||||
'title' => $title,
|
||||
'height' => array_key_exists('height', $options) ? $options['height'] : '400px',
|
||||
'width' => array_key_exists('width', $options) ? $options['width'] : '800px',
|
||||
'bodyHeight' => array_key_exists('bodyHeight', $options) ? $options['bodyHeight'] : '70',
|
||||
'modalWidth' => array_key_exists('modalWidth', $options) ? $options['modalWidth'] : '80',
|
||||
'footer' => $confirm . '<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">'
|
||||
. Text::_('JLIB_HTML_BEHAVIOR_CLOSE') . '</button>'
|
||||
]
|
||||
);
|
||||
@ -0,0 +1,180 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
// Get some system objects.
|
||||
$document = Factory::getApplication()->getDocument();
|
||||
$lang = Factory::getApplication()->getLanguage();
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var string $autocomplete Autocomplete attribute for the field.
|
||||
* @var boolean $autofocus Is autofocus enabled?
|
||||
* @var string $class Classes for the input.
|
||||
* @var string $description Description of the field.
|
||||
* @var boolean $disabled Is this field disabled?
|
||||
* @var string $group Group the field belongs to. <fields> section in form XML.
|
||||
* @var boolean $hidden Is this field hidden in the form?
|
||||
* @var string $hint Placeholder for the field.
|
||||
* @var string $id DOM id of the field.
|
||||
* @var string $label Label of the field.
|
||||
* @var string $labelclass Classes to apply to the label.
|
||||
* @var boolean $multiple Does this field support multiple values?
|
||||
* @var string $name Name of the input field.
|
||||
* @var string $onchange Onchange attribute for the field.
|
||||
* @var string $onclick Onclick attribute for the field.
|
||||
* @var string $pattern Pattern (Reg Ex) of value of the form field.
|
||||
* @var boolean $readonly Is this field read only?
|
||||
* @var boolean $repeat Allows extensions to duplicate elements.
|
||||
* @var boolean $required Is this field required?
|
||||
* @var integer $size Size attribute of the input.
|
||||
* @var boolean $spellcheck Spellcheck state for the form field.
|
||||
* @var string $validate Validation rules to apply.
|
||||
* @var string $value Value attribute of the field.
|
||||
* @var array $checkedOptions Options that will be set as checked.
|
||||
* @var boolean $hasValue Has this field a value assigned?
|
||||
* @var array $options Options available for this field.
|
||||
* @var string $dataAttribute Miscellaneous data attributes preprocessed for HTML output
|
||||
* @var array $dataAttributes Miscellaneous data attributes for eg, data-*.
|
||||
*
|
||||
* Calendar Specific
|
||||
* @var string $helperPath The relative path for the helper file
|
||||
* @var string $minYear The minimum year, that will be subtracted/added to current year
|
||||
* @var string $maxYear The maximum year, that will be subtracted/added to current year
|
||||
* @var integer $todaybutton The today button
|
||||
* @var integer $weeknumbers The week numbers display
|
||||
* @var integer $showtime The time selector display
|
||||
* @var integer $filltable The previous/next month filling
|
||||
* @var integer $timeformat The time format
|
||||
* @var integer $singleheader Display different header row for month/year
|
||||
* @var string $direction The document direction
|
||||
* @var string $calendar The calendar type
|
||||
* @var array $weekend The weekends days
|
||||
* @var integer $firstday The first day of the week
|
||||
* @var string $format The format of date and time
|
||||
*/
|
||||
|
||||
$inputvalue = '';
|
||||
|
||||
// Build the attributes array.
|
||||
$attributes = [];
|
||||
|
||||
empty($size) ? null : $attributes['size'] = $size;
|
||||
empty($maxlength) ? null : $attributes['maxlength'] = $maxLength;
|
||||
empty($class) ? $attributes['class'] = 'form-control' : $attributes['class'] = 'form-control ' . $class;
|
||||
!$readonly ? null : $attributes['readonly'] = 'readonly';
|
||||
!$disabled ? null : $attributes['disabled'] = 'disabled';
|
||||
empty($onchange) ? null : $attributes['onchange'] = $onchange;
|
||||
|
||||
if ($required) {
|
||||
$attributes['required'] = '';
|
||||
}
|
||||
|
||||
// Handle the special case for "now".
|
||||
if (strtoupper($value) === 'NOW') {
|
||||
$value = Factory::getDate()->format('Y-m-d H:i:s');
|
||||
}
|
||||
|
||||
$readonly = isset($attributes['readonly']) && $attributes['readonly'] === 'readonly';
|
||||
$disabled = isset($attributes['disabled']) && $attributes['disabled'] === 'disabled';
|
||||
|
||||
if (is_array($attributes)) {
|
||||
$attributes = ArrayHelper::toString($attributes);
|
||||
}
|
||||
|
||||
$calendarAttrs = [
|
||||
'data-inputfield' => $id,
|
||||
'data-button' => $id . '_btn',
|
||||
'data-date-format' => $format,
|
||||
'data-firstday' => empty($firstday) ? '' : $firstday,
|
||||
'data-weekend' => empty($weekend) ? '' : implode(',', $weekend),
|
||||
'data-today-btn' => $todaybutton,
|
||||
'data-week-numbers' => $weeknumbers,
|
||||
'data-show-time' => $showtime,
|
||||
'data-show-others' => $filltable,
|
||||
'data-time24' => $timeformat,
|
||||
'data-only-months-nav' => $singleheader,
|
||||
'data-min-year' => $minYear,
|
||||
'data-max-year' => $maxYear,
|
||||
'data-date-type' => strtolower($calendar),
|
||||
];
|
||||
|
||||
$calendarAttrsStr = ArrayHelper::toString($calendarAttrs);
|
||||
|
||||
// Add language strings
|
||||
$strings = [
|
||||
// Days
|
||||
'SUNDAY', 'MONDAY', 'TUESDAY', 'WEDNESDAY', 'THURSDAY', 'FRIDAY', 'SATURDAY',
|
||||
// Short days
|
||||
'SUN', 'MON', 'TUE', 'WED', 'THU', 'FRI', 'SAT',
|
||||
// Months
|
||||
'JANUARY', 'FEBRUARY', 'MARCH', 'APRIL', 'MAY', 'JUNE', 'JULY', 'AUGUST', 'SEPTEMBER', 'OCTOBER', 'NOVEMBER', 'DECEMBER',
|
||||
// Short months
|
||||
'JANUARY_SHORT', 'FEBRUARY_SHORT', 'MARCH_SHORT', 'APRIL_SHORT', 'MAY_SHORT', 'JUNE_SHORT',
|
||||
'JULY_SHORT', 'AUGUST_SHORT', 'SEPTEMBER_SHORT', 'OCTOBER_SHORT', 'NOVEMBER_SHORT', 'DECEMBER_SHORT',
|
||||
// Buttons
|
||||
'JCLOSE', 'JCLEAR', 'JLIB_HTML_BEHAVIOR_TODAY',
|
||||
// Miscellaneous
|
||||
'JLIB_HTML_BEHAVIOR_WK',
|
||||
];
|
||||
|
||||
foreach ($strings as $c) {
|
||||
Text::script($c);
|
||||
}
|
||||
|
||||
// These are new strings. Make sure they exist. Can be generalised at later time: eg in 4.1 version.
|
||||
if ($lang->hasKey('JLIB_HTML_BEHAVIOR_AM')) {
|
||||
Text::script('JLIB_HTML_BEHAVIOR_AM');
|
||||
}
|
||||
|
||||
if ($lang->hasKey('JLIB_HTML_BEHAVIOR_PM')) {
|
||||
Text::script('JLIB_HTML_BEHAVIOR_PM');
|
||||
}
|
||||
|
||||
// Redefine locale/helper assets to use correct path, and load calendar assets
|
||||
$document->getWebAssetManager()
|
||||
->registerAndUseScript('field.calendar.helper', $helperPath, [], ['defer' => true])
|
||||
->useStyle('field.calendar' . ($direction === 'rtl' ? '-rtl' : ''))
|
||||
->useScript('field.calendar');
|
||||
|
||||
?>
|
||||
<div class="field-calendar">
|
||||
<?php if (!$readonly && !$disabled) : ?>
|
||||
<div class="input-group">
|
||||
<?php endif; ?>
|
||||
<input
|
||||
type="text"
|
||||
id="<?php echo $id; ?>"
|
||||
name="<?php echo $name; ?>"
|
||||
value="<?php echo htmlspecialchars(($value !== '0000-00-00 00:00:00') ? $value : '', ENT_COMPAT, 'UTF-8'); ?>"
|
||||
<?php echo !empty($description) ? ' aria-describedby="' . ($id ?: $name) . '-desc"' : ''; ?>
|
||||
<?php echo $attributes; ?>
|
||||
<?php echo $dataAttribute ?? ''; ?>
|
||||
<?php echo !empty($hint) ? 'placeholder="' . htmlspecialchars($hint, ENT_COMPAT, 'UTF-8') . '"' : ''; ?>
|
||||
data-alt-value="<?php echo htmlspecialchars($value, ENT_COMPAT, 'UTF-8'); ?>" autocomplete="off">
|
||||
<button type="button" class="<?php echo ($readonly || $disabled) ? 'hidden ' : ''; ?>btn btn-primary"
|
||||
id="<?php echo $id; ?>_btn"
|
||||
title="<?php echo Text::_('JLIB_HTML_BEHAVIOR_OPEN_CALENDAR'); ?>"
|
||||
<?php echo $calendarAttrsStr; ?>
|
||||
><span class="icon-calendar" aria-hidden="true"></span>
|
||||
<span class="visually-hidden"><?php echo Text::_('JLIB_HTML_BEHAVIOR_OPEN_CALENDAR'); ?></span>
|
||||
</button>
|
||||
<?php if (!$readonly && !$disabled) : ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
@ -0,0 +1,71 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2019 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Form\Field\CheckboxField;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var string $autocomplete Autocomplete attribute for the field.
|
||||
* @var boolean $autofocus Is autofocus enabled?
|
||||
* @var string $class Classes for the input.
|
||||
* @var string|null $description Description of the field.
|
||||
* @var boolean $disabled Is this field disabled?
|
||||
* @var CheckboxField $field The form field object.
|
||||
* @var string|null $group Group the field belongs to. <fields> section in form XML.
|
||||
* @var boolean $hidden Is this field hidden in the form?
|
||||
* @var string $hint Placeholder for the field.
|
||||
* @var string $id DOM id of the field.
|
||||
* @var string $label Label of the field.
|
||||
* @var string $labelclass Classes to apply to the label.
|
||||
* @var boolean $multiple Does this field support multiple values?
|
||||
* @var string $name Name of the input field.
|
||||
* @var string $onchange Onchange attribute for the field.
|
||||
* @var string $onclick Onclick attribute for the field.
|
||||
* @var string $pattern Pattern (Reg Ex) of value of the form field.
|
||||
* @var string $validationtext The validation text of invalid value of the form field.
|
||||
* @var boolean $readonly Is this field read only?
|
||||
* @var boolean $repeat Allows extensions to duplicate elements.
|
||||
* @var boolean $required Is this field required?
|
||||
* @var integer $size Size attribute of the input.
|
||||
* @var boolean $spellcheck Spellcheck state for the form field.
|
||||
* @var string $validate Validation rules to apply.
|
||||
* @var string $value Value attribute of the field.
|
||||
* @var boolean $checked Whether the checkbox should be checked.
|
||||
* @var string $dataAttribute Miscellaneous data attributes preprocessed for HTML output
|
||||
* @var array $dataAttributes Miscellaneous data attribute for eg, data-*.
|
||||
*/
|
||||
|
||||
// Initialize some field attributes.
|
||||
$class = $class ? ' ' . $class : '';
|
||||
$disabled = $disabled ? ' disabled' : '';
|
||||
$required = $required ? ' required' : '';
|
||||
$autofocus = $autofocus ? ' autofocus' : '';
|
||||
$checked = $checked ? ' checked' : '';
|
||||
|
||||
// Initialize JavaScript field attributes.
|
||||
$onclick = $onclick ? ' onclick="' . $onclick . '"' : '';
|
||||
$onchange = $onchange ? ' onchange="' . $onchange . '"' : '';
|
||||
|
||||
?>
|
||||
<div class="form-check form-check-inline">
|
||||
<input
|
||||
type="checkbox"
|
||||
name="<?php echo $name; ?>"
|
||||
id="<?php echo $id; ?>"
|
||||
class="form-check-input<?php echo $class; ?>"
|
||||
value="<?php echo htmlspecialchars($value, ENT_QUOTES, 'UTF-8'); ?>"
|
||||
<?php echo $checked . $disabled . $onclick . $onchange . $required . $autofocus . $dataAttribute; ?>
|
||||
>
|
||||
</div>
|
||||
@ -0,0 +1,92 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2015 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var string $autocomplete Autocomplete attribute for the field.
|
||||
* @var boolean $autofocus Is autofocus enabled?
|
||||
* @var string $class Classes for the input.
|
||||
* @var string $description Description of the field.
|
||||
* @var boolean $disabled Is this field disabled?
|
||||
* @var string $group Group the field belongs to. <fields> section in form XML.
|
||||
* @var boolean $hidden Is this field hidden in the form?
|
||||
* @var string $hint Placeholder for the field.
|
||||
* @var string $id DOM id of the field.
|
||||
* @var string $label Label of the field.
|
||||
* @var string $labelclass Classes to apply to the label.
|
||||
* @var boolean $multiple Does this field support multiple values?
|
||||
* @var string $name Name of the input field.
|
||||
* @var string $onchange Onchange attribute for the field.
|
||||
* @var string $onclick Onclick attribute for the field.
|
||||
* @var string $pattern Pattern (Reg Ex) of value of the form field.
|
||||
* @var boolean $readonly Is this field read only?
|
||||
* @var boolean $repeat Allows extensions to duplicate elements.
|
||||
* @var boolean $required Is this field required?
|
||||
* @var integer $size Size attribute of the input.
|
||||
* @var boolean $spellcheck Spellcheck state for the form field.
|
||||
* @var string $validate Validation rules to apply.
|
||||
* @var string $value Value attribute of the field.
|
||||
* @var array $checkedOptions Options that will be set as checked.
|
||||
* @var boolean $hasValue Has this field a value assigned?
|
||||
* @var array $options Options available for this field.
|
||||
* @var string $dataAttribute Miscellaneous data attributes preprocessed for HTML output
|
||||
* @var array $dataAttributes Miscellaneous data attributes for eg, data-*.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The format of the input tag to be filled in using sprintf.
|
||||
* %1 - id
|
||||
* %2 - name
|
||||
* %3 - value
|
||||
* %4 = any other attributes
|
||||
*/
|
||||
$format = '<input type="checkbox" id="%1$s" name="%2$s" value="%3$s" %4$s>';
|
||||
|
||||
// The alt option for Text::alt
|
||||
$alt = preg_replace('/[^a-zA-Z0-9_\-]/', '_', $name);
|
||||
?>
|
||||
|
||||
<fieldset id="<?php echo $id; ?>" class="<?php echo trim($class . ' checkboxes'); ?>"
|
||||
<?php echo $required ? 'required' : ''; ?>
|
||||
<?php echo $autofocus ? 'autofocus' : ''; ?>
|
||||
<?php echo $dataAttribute; ?>>
|
||||
<legend class="visually-hidden"><?php echo $label; ?></legend>
|
||||
|
||||
<?php foreach ($options as $i => $option) : ?>
|
||||
<?php
|
||||
// Initialize some option attributes.
|
||||
$checked = in_array((string) $option->value, $checkedOptions, true) ? 'checked' : '';
|
||||
|
||||
// In case there is no stored value, use the option's default state.
|
||||
$checked = (!$hasValue && $option->checked) ? 'checked' : $checked;
|
||||
$optionClass = !empty($option->class) ? 'class="form-check-input ' . $option->class . '"' : ' class="form-check-input"';
|
||||
$optionDisabled = !empty($option->disable) || $disabled ? 'disabled' : '';
|
||||
|
||||
// Initialize some JavaScript option attributes.
|
||||
$onclick = !empty($option->onclick) ? 'onclick="' . $option->onclick . '"' : '';
|
||||
$onchange = !empty($option->onchange) ? 'onchange="' . $option->onchange . '"' : '';
|
||||
|
||||
$oid = $id . $i;
|
||||
$value = htmlspecialchars($option->value, ENT_COMPAT, 'UTF-8');
|
||||
$attributes = array_filter([$checked, $optionClass, $optionDisabled, $onchange, $onclick]);
|
||||
?>
|
||||
<div class="form-check form-check-inline">
|
||||
<?php echo sprintf($format, $oid, $name, $value, implode(' ', $attributes)); ?>
|
||||
<label for="<?php echo $oid; ?>" class="form-check-label">
|
||||
<?php echo $option->text; ?>
|
||||
</label>
|
||||
</div>
|
||||
<?php endforeach; ?>
|
||||
</fieldset>
|
||||
@ -0,0 +1,96 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Factory;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var string $autocomplete Autocomplete attribute for the field.
|
||||
* @var boolean $autofocus Is autofocus enabled?
|
||||
* @var string $class Classes for the input.
|
||||
* @var string $description Description of the field.
|
||||
* @var boolean $disabled Is this field disabled?
|
||||
* @var string $group Group the field belongs to. <fields> section in form XML.
|
||||
* @var boolean $hidden Is this field hidden in the form?
|
||||
* @var string $hint Placeholder for the field.
|
||||
* @var string $id DOM id of the field.
|
||||
* @var string $label Label of the field.
|
||||
* @var string $labelclass Classes to apply to the label.
|
||||
* @var boolean $multiple Does this field support multiple values?
|
||||
* @var string $name Name of the input field.
|
||||
* @var string $onchange Onchange attribute for the field.
|
||||
* @var string $onclick Onclick attribute for the field.
|
||||
* @var string $pattern Pattern (Reg Ex) of value of the form field.
|
||||
* @var boolean $readonly Is this field read only?
|
||||
* @var boolean $repeat Allows extensions to duplicate elements.
|
||||
* @var integer $size Size attribute of the input.
|
||||
* @var boolean $spellchec Spellcheck state for the form field.
|
||||
* @var string $validate Validation rules to apply.
|
||||
* @var string $value Value attribute of the field.
|
||||
* @var array $checkedOptions Options that will be set as checked.
|
||||
* @var boolean $hasValue Has this field a value assigned?
|
||||
* @var array $options Options available for this field.
|
||||
* @var array $checked Is this field checked?
|
||||
* @var array $position Is this field checked?
|
||||
* @var array $control Is this field checked?
|
||||
* @var string $dataAttribute Miscellaneous data attributes preprocessed for HTML output
|
||||
* @var array $dataAttributes Miscellaneous data attributes for eg, data-*.
|
||||
*/
|
||||
|
||||
if ($validate !== 'color' && in_array($format, ['rgb', 'rgba'], true)) {
|
||||
$alpha = ($format === 'rgba');
|
||||
$placeholder = $alpha ? 'rgba(0, 0, 0, 0.5)' : 'rgb(0, 0, 0)';
|
||||
} else {
|
||||
$placeholder = '#rrggbb';
|
||||
}
|
||||
|
||||
$inputclass = ($keywords && ! in_array($format, ['rgb', 'rgba'], true)) ? ' keywords' : ' ' . $format;
|
||||
$class = ' class="form-control ' . trim('minicolors ' . $class) . ($validate === 'color' ? '' : $inputclass) . '"';
|
||||
$control = $control ? ' data-control="' . $control . '"' : '';
|
||||
$format = $format ? ' data-format="' . $format . '"' : '';
|
||||
$keywords = $keywords ? ' data-keywords="' . $keywords . '"' : '';
|
||||
$colors = $colors ? ' data-colors="' . $colors . '"' : '';
|
||||
$validate = $validate ? ' data-validate="' . $validate . '"' : '';
|
||||
$disabled = $disabled ? ' disabled' : '';
|
||||
$readonly = $readonly ? ' readonly' : '';
|
||||
$hint = strlen($hint) ? ' placeholder="' . $this->escape($hint) . '"' : ' placeholder="' . $placeholder . '"';
|
||||
$required = $required ? ' required' : '';
|
||||
$autocomplete = !empty($autocomplete) ? ' autocomplete="' . $autocomplete . '"' : '';
|
||||
|
||||
// Force LTR input value in RTL, due to display issues with rgba/hex colors
|
||||
$direction = $lang->isRtl() ? ' dir="ltr" style="text-align:right"' : '';
|
||||
|
||||
/** @var Joomla\CMS\WebAsset\WebAssetManager $wa */
|
||||
$wa = Factory::getApplication()->getDocument()->getWebAssetManager();
|
||||
$wa->usePreset('minicolors')
|
||||
->useScript('field.color-adv');
|
||||
?>
|
||||
<input type="text" name="<?php echo $name; ?>" id="<?php echo $id; ?>" value="<?php echo $this->escape($color); ?>"<?php
|
||||
echo $hint,
|
||||
$class,
|
||||
$position,
|
||||
$control,
|
||||
$readonly,
|
||||
$disabled,
|
||||
$required,
|
||||
$onchange,
|
||||
$autocomplete,
|
||||
$autofocus,
|
||||
$format,
|
||||
$keywords,
|
||||
$direction,
|
||||
$validate,
|
||||
$dataAttribute;
|
||||
?>/>
|
||||
@ -0,0 +1,72 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var string $autocomplete Autocomplete attribute for the field.
|
||||
* @var boolean $autofocus Is autofocus enabled?
|
||||
* @var string $class Classes for the input.
|
||||
* @var string $description Description of the field.
|
||||
* @var boolean $disabled Is this field disabled?
|
||||
* @var string $group Group the field belongs to. <fields> section in form XML.
|
||||
* @var boolean $hidden Is this field hidden in the form?
|
||||
* @var string $hint Placeholder for the field.
|
||||
* @var string $id DOM id of the field.
|
||||
* @var string $label Label of the field.
|
||||
* @var string $labelclass Classes to apply to the label.
|
||||
* @var boolean $multiple Does this field support multiple values?
|
||||
* @var string $name Name of the input field.
|
||||
* @var string $onchange Onchange attribute for the field.
|
||||
* @var string $onclick Onclick attribute for the field.
|
||||
* @var string $pattern Pattern (Reg Ex) of value of the form field.
|
||||
* @var boolean $readonly Is this field read only?
|
||||
* @var boolean $repeat Allows extensions to duplicate elements.
|
||||
* @var boolean $required Is this field required?
|
||||
* @var integer $size Size attribute of the input.
|
||||
* @var boolean $spellchec Spellcheck state for the form field.
|
||||
* @var string $validate Validation rules to apply.
|
||||
* @var string $value Value attribute of the field.
|
||||
* @var array $checkedOptions Options that will be set as checked.
|
||||
* @var boolean $hasValue Has this field a value assigned?
|
||||
* @var array $options Options available for this field.
|
||||
* @var array $checked Is this field checked?
|
||||
* @var array $position Is this field checked?
|
||||
* @var array $control Is this field checked?
|
||||
* @var array $colors The specified colors
|
||||
* @var string $dataAttribute Miscellaneous data attributes preprocessed for HTML output
|
||||
* @var array $dataAttributes Miscellaneous data attribute for eg, data-*.
|
||||
*/
|
||||
|
||||
$class = ' class="form-select ' . trim($class) . '"';
|
||||
$disabled = $disabled ? ' disabled' : '';
|
||||
$readonly = $readonly ? ' readonly' : '';
|
||||
|
||||
Factory::getDocument()->getWebAssetManager()
|
||||
->useStyle('webcomponent.field-simple-color')
|
||||
->useScript('webcomponent.field-simple-color');
|
||||
|
||||
?>
|
||||
<joomla-field-simple-color text-select="<?php echo Text::_('JFIELD_COLOR_SELECT'); ?>" text-color="<?php echo Text::_('JFIELD_COLOR_VALUE'); ?>" text-close="<?php echo Text::_('JLIB_HTML_BEHAVIOR_CLOSE'); ?>" text-transparent="<?php echo Text::_('JFIELD_COLOR_TRANSPARENT'); ?>">
|
||||
<select name="<?php echo $name; ?>" id="<?php echo $id; ?>"<?php
|
||||
echo $disabled; ?><?php echo $readonly; ?><?php echo $dataAttribute; ?><?php echo $required; ?><?php echo $class; ?><?php echo $position; ?><?php
|
||||
echo $onchange; ?><?php echo $autofocus; ?> style="visibility:hidden;width:22px;height:1px">
|
||||
<?php foreach ($colors as $i => $c) : ?>
|
||||
<option<?php echo ($c === $color ? ' selected="selected"' : ''); ?> value="<?php echo $c; ?>"></option>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
</joomla-field-simple-color>
|
||||
@ -0,0 +1,157 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2019 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
// phpcs:disable PSR1.Files.SideEffects
|
||||
\defined('_JEXEC') or die;
|
||||
// phpcs:enable PSR1.Files.SideEffects
|
||||
|
||||
/**
|
||||
* @var array $displayData Data for this field collected by ColorField
|
||||
*/
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var string $autocomplete Autocomplete attribute for the field.
|
||||
* @var boolean $autofocus Is autofocus enabled?
|
||||
* @var string $class Classes for the input
|
||||
* @var boolean $disabled Is this field disabled?
|
||||
* @var string $display Which kind of slider should be displayed?
|
||||
* @var string $default Default value for this field
|
||||
* @var string $format Format of color value
|
||||
* @var string $hint Text for inputs placeholder
|
||||
* @var string $id ID of field and label
|
||||
* @var string $name Name of the input field
|
||||
* @var string $onchange Onchange attribute for the field
|
||||
* @var string $onclick Onclick attribute for the field
|
||||
* @var string $position Position of input
|
||||
* @var boolean $preview Should the selected value be displayed separately?
|
||||
* @var boolean $readonly Is this field read only?
|
||||
* @var boolean $required Is this field required?
|
||||
* @var string $saveFormat Format to save the color
|
||||
* @var integer $size Size attribute of the input
|
||||
* @var string $validate Validation rules to apply.
|
||||
* @var string $dataAttribute Miscellaneous data attributes preprocessed for HTML output
|
||||
* @var array $dataAttributes Miscellaneous data attributes for eg, data-*.
|
||||
*/
|
||||
|
||||
if ($color === 'none' || is_null($color)) {
|
||||
$color = '';
|
||||
}
|
||||
|
||||
$alpha = $format === 'hsla' || $format === 'rgba' || $format === 'alpha';
|
||||
$autocomplete = !empty($autocomplete) ? 'autocomplete="' . $autocomplete . '"' : '';
|
||||
$autofocus = $autofocus ? ' autofocus' : '';
|
||||
$color = ' data-color="' . $color . '"';
|
||||
$class = $class ? ' class="' . $class . '"' : '';
|
||||
$default = $default ? ' data-default="' . $default . '"' : '';
|
||||
$disabled = $disabled ? ' disabled' : '';
|
||||
$format = $format ? ' data-format="' . $format . '"' : '';
|
||||
$hint = strlen($hint) ? ' placeholder="' . $this->escape($hint) . '"' : '';
|
||||
$onchange = $onchange ? ' onchange="' . $onchange . '"' : '';
|
||||
$onclick = $onclick ? ' onclick="' . $onclick . '"' : '';
|
||||
$preview = $preview ? ' data-preview="' . $preview . '"' : '';
|
||||
$readonly = $readonly ? ' readonly' : '';
|
||||
$saveFormat = $saveFormat ? ' data-format="' . $saveFormat . '"' : '';
|
||||
$size = $size ? ' size="' . $size . '"' : '';
|
||||
$validate = $validate ? ' data-validate="' . $validate . '"' : '';
|
||||
|
||||
$displayValues = explode(',', $display);
|
||||
$allSliders = $display === 'full' || empty($display);
|
||||
|
||||
/** @var Joomla\CMS\WebAsset\WebAssetManager $wa */
|
||||
$wa = Factory::getApplication()->getDocument()->getWebAssetManager();
|
||||
$wa->useScript('field.color-slider');
|
||||
|
||||
Text::script('JFIELD_COLOR_ERROR_CONVERT_HSL');
|
||||
Text::script('JFIELD_COLOR_ERROR_CONVERT_HUE');
|
||||
Text::script('JFIELD_COLOR_ERROR_NO_COLOUR');
|
||||
Text::script('JFIELD_COLOR_ERROR_WRONG_FORMAT');
|
||||
?>
|
||||
|
||||
<div class="color-slider-wrapper"
|
||||
<?php echo
|
||||
$class,
|
||||
$color,
|
||||
$default,
|
||||
$preview,
|
||||
$size,
|
||||
$dataAttribute;
|
||||
?>
|
||||
>
|
||||
<!-- The data to save at the end (label created in form by Joomla) -->
|
||||
<input type="text" class="form-control color-input" id="<?php echo $id; ?>" name="<?php echo $name; ?>"
|
||||
<?php echo
|
||||
$disabled,
|
||||
$readonly,
|
||||
$required,
|
||||
$saveFormat,
|
||||
$validate;
|
||||
?>
|
||||
>
|
||||
<!-- Shows value which is allowed to manipulate like 'hue' -->
|
||||
<label for="slider-input" class="visually-hidden"><?php echo Text::_('JFIELD_COLOR_LABEL_SLIDER_INPUT'); ?></label>
|
||||
<input type="text" class="form-control" id="slider-input"
|
||||
<?php echo
|
||||
$autocomplete,
|
||||
$disabled,
|
||||
$hint,
|
||||
$onchange,
|
||||
$onclick,
|
||||
$position,
|
||||
$readonly,
|
||||
$required,
|
||||
$format,
|
||||
$validate;
|
||||
?>
|
||||
>
|
||||
<span class="form-control-feedback"></span>
|
||||
|
||||
<?php if ($allSliders || in_array('hue', $displayValues)) : ?>
|
||||
<label for="hue-slider" class="visually-hidden"><?php echo Text::_('JFIELD_COLOR_LABEL_SLIDER_HUE'); ?></label>
|
||||
<input type="range" min="0" max="360" class="form-control color-slider" id="hue-slider" data-type="hue"
|
||||
<?php echo
|
||||
$autofocus,
|
||||
$disabled
|
||||
?>
|
||||
>
|
||||
<?php endif ?>
|
||||
<?php if ($allSliders || in_array('saturation', $displayValues)) : ?>
|
||||
<label for="saturation-slider" class="visually-hidden"><?php echo Text::_('JFIELD_COLOR_LABEL_SLIDER_SATURATION'); ?></label>
|
||||
<input type="range" min="0" max="100" class="form-control color-slider" id="saturation-slider" data-type="saturation"
|
||||
<?php echo
|
||||
$autofocus,
|
||||
$disabled
|
||||
?>
|
||||
>
|
||||
<?php endif ?>
|
||||
<?php if ($allSliders || in_array('light', $displayValues)) : ?>
|
||||
<label for="light-slider" class="visually-hidden"><?php echo Text::_('JFIELD_COLOR_LABEL_SLIDER_LIGHT'); ?></label>
|
||||
<input type="range" min="0" max="100" class="form-control color-slider" id="light-slider" data-type="light"
|
||||
<?php echo
|
||||
$autofocus,
|
||||
$disabled
|
||||
?>
|
||||
>
|
||||
<?php endif ?>
|
||||
<?php if ($alpha && ($allSliders || in_array('alpha', $displayValues))) : ?>
|
||||
<label for="alpha-slider" class="visually-hidden"><?php echo Text::_('JFIELD_COLOR_LABEL_SLIDER_ALPHA'); ?></label>
|
||||
<input type="range" min="0" max="100" class="form-control color-slider" id="alpha-slider" data-type="alpha"
|
||||
<?php echo
|
||||
$autofocus,
|
||||
$disabled
|
||||
?>
|
||||
>
|
||||
<?php endif ?>
|
||||
</div>
|
||||
@ -0,0 +1,77 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2017 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var string $autocomplete Autocomplete attribute for the field.
|
||||
* @var boolean $autofocus Is autofocus enabled?
|
||||
* @var string $class Classes for the input.
|
||||
* @var string $description Description of the field.
|
||||
* @var boolean $disabled Is this field disabled?
|
||||
* @var string $group Group the field belongs to. <fields> section in form XML.
|
||||
* @var boolean $hidden Is this field hidden in the form?
|
||||
* @var string $hint Placeholder for the field.
|
||||
* @var string $id DOM id of the field.
|
||||
* @var string $label Label of the field.
|
||||
* @var string $labelclass Classes to apply to the label.
|
||||
* @var boolean $multiple Does this field support multiple values?
|
||||
* @var string $name Name of the input field.
|
||||
* @var string $onchange Onchange attribute for the field.
|
||||
* @var string $onclick Onclick attribute for the field.
|
||||
* @var string $pattern Pattern (Reg Ex) of value of the form field.
|
||||
* @var boolean $readonly Is this field read only?
|
||||
* @var boolean $repeat Allows extensions to duplicate elements.
|
||||
* @var boolean $required Is this field required?
|
||||
* @var integer $size Size attribute of the input.
|
||||
* @var boolean $spellcheck Spellcheck state for the form field.
|
||||
* @var string $validate Validation rules to apply.
|
||||
* @var string $value Value attribute of the field.
|
||||
* @var array $options Options available for this field.
|
||||
* @var string $dataAttribute Miscellaneous data attributes preprocessed for HTML output
|
||||
* @var array $dataAttributes Miscellaneous data attribute for eg, data-*.
|
||||
*/
|
||||
|
||||
HTMLHelper::_('behavior.combobox');
|
||||
|
||||
$attr = '';
|
||||
|
||||
// Initialize some field attributes.
|
||||
$attr .= !empty($class) ? ' class="awesomplete form-control ' . $class . '"' : ' class="awesomplete form-control"';
|
||||
$attr .= !empty($size) ? ' size="' . $size . '"' : '';
|
||||
$attr .= !empty($readonly) ? ' readonly' : '';
|
||||
$attr .= !empty($disabled) ? ' disabled' : '';
|
||||
$attr .= !empty($required) ? ' required' : '';
|
||||
$attr .= !empty($description) ? ' aria-describedby="' . ($id ?: $name) . '-desc"' : '';
|
||||
|
||||
// Initialize JavaScript field attributes.
|
||||
$attr .= !empty($onchange) ? ' onchange="' . $onchange . '"' : '';
|
||||
|
||||
$val = [];
|
||||
|
||||
foreach ($options as $option) {
|
||||
$val[] = $option->text;
|
||||
}
|
||||
?>
|
||||
<input
|
||||
type="text"
|
||||
name="<?php echo $name; ?>"
|
||||
id="<?php echo $id; ?>"
|
||||
value="<?php echo htmlspecialchars($value, ENT_COMPAT, 'UTF-8'); ?>"
|
||||
<?php echo $attr; ?>
|
||||
data-list="<?php echo implode(', ', $val); ?>"
|
||||
<?php echo $dataAttribute; ?>
|
||||
/>
|
||||
@ -0,0 +1,78 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2015 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\Router\Route;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var string $autocomplete Autocomplete attribute for the field.
|
||||
* @var boolean $autofocus Is autofocus enabled?
|
||||
* @var string $class Classes for the input.
|
||||
* @var string $description Description of the field.
|
||||
* @var boolean $disabled Is this field disabled?
|
||||
* @var string $group Group the field belongs to. <fields> section in form XML.
|
||||
* @var boolean $hidden Is this field hidden in the form?
|
||||
* @var string $hint Placeholder for the field.
|
||||
* @var string $id DOM id of the field.
|
||||
* @var string $label Label of the field.
|
||||
* @var string $labelclass Classes to apply to the label.
|
||||
* @var boolean $multiple Does this field support multiple values?
|
||||
* @var string $name Name of the input field.
|
||||
* @var string $onchange Onchange attribute for the field.
|
||||
* @var string $onclick Onclick attribute for the field.
|
||||
* @var string $pattern Pattern (Reg Ex) of value of the form field.
|
||||
* @var boolean $readonly Is this field read only?
|
||||
* @var boolean $repeat Allows extensions to duplicate elements.
|
||||
* @var boolean $required Is this field required?
|
||||
* @var integer $size Size attribute of the input.
|
||||
* @var boolean $spellcheck Spellcheck state for the form field.
|
||||
* @var string $validate Validation rules to apply.
|
||||
* @var string $value Value attribute of the field.
|
||||
* @var array $checkedOptions Options that will be set as checked.
|
||||
* @var boolean $hasValue Has this field a value assigned?
|
||||
* @var array $options Options available for this field.
|
||||
* @var string $link The link for the content history page
|
||||
* @var string $label The label text
|
||||
* @var string $dataAttribute Miscellaneous data attributes preprocessed for HTML output
|
||||
* @var array $dataAttributes Miscellaneous data attributes for eg, data-*.
|
||||
*/
|
||||
|
||||
echo HTMLHelper::_(
|
||||
'bootstrap.renderModal',
|
||||
'versionsModal',
|
||||
[
|
||||
'url' => Route::_($link),
|
||||
'title' => $label,
|
||||
'height' => '100%',
|
||||
'width' => '100%',
|
||||
'modalWidth' => '80',
|
||||
'bodyHeight' => '60',
|
||||
'footer' => '<button type="button" class="btn btn-secondary" data-bs-dismiss="modal" aria-hidden="true">'
|
||||
. Text::_('JLIB_HTML_BEHAVIOR_CLOSE') . '</button>'
|
||||
]
|
||||
);
|
||||
|
||||
?>
|
||||
<button
|
||||
type="button"
|
||||
class="btn btn-secondary"
|
||||
data-bs-toggle="modal"
|
||||
data-bs-target="#versionsModal"
|
||||
<?php echo $dataAttribute; ?>>
|
||||
<span class="icon-code-branch" aria-hidden="true"></span>
|
||||
<?php echo $label; ?>
|
||||
</button>
|
||||
@ -0,0 +1,74 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\String\PunycodeHelper;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var string $autocomplete Autocomplete attribute for the field.
|
||||
* @var boolean $autofocus Is autofocus enabled?
|
||||
* @var string $class Classes for the input.
|
||||
* @var string $description Description of the field.
|
||||
* @var boolean $disabled Is this field disabled?
|
||||
* @var string $group Group the field belongs to. <fields> section in form XML.
|
||||
* @var boolean $hidden Is this field hidden in the form?
|
||||
* @var string $hint Placeholder for the field.
|
||||
* @var string $id DOM id of the field.
|
||||
* @var string $label Label of the field.
|
||||
* @var string $labelclass Classes to apply to the label.
|
||||
* @var boolean $multiple Does this field support multiple values?
|
||||
* @var string $name Name of the input field.
|
||||
* @var string $onchange Onchange attribute for the field.
|
||||
* @var string $onclick Onclick attribute for the field.
|
||||
* @var string $pattern Pattern (Reg Ex) of value of the form field.
|
||||
* @var boolean $readonly Is this field read only?
|
||||
* @var boolean $repeat Allows extensions to duplicate elements.
|
||||
* @var boolean $required Is this field required?
|
||||
* @var integer $size Size attribute of the input.
|
||||
* @var boolean $spellcheck Spellcheck state for the form field.
|
||||
* @var string $validate Validation rules to apply.
|
||||
* @var string $value Value attribute of the field.
|
||||
* @var array $checkedOptions Options that will be set as checked.
|
||||
* @var boolean $hasValue Has this field a value assigned?
|
||||
* @var array $options Options available for this field.
|
||||
* @var array $inputType Options available for this field.
|
||||
* @var string $accept File types that are accepted.
|
||||
* @var string $dataAttribute Miscellaneous data attributes preprocessed for HTML output
|
||||
* @var array $dataAttributes Miscellaneous data attribute for eg, data-*.
|
||||
*/
|
||||
|
||||
$attributes = [
|
||||
'type="email"',
|
||||
'inputmode="email"',
|
||||
'name="' . $name . '"',
|
||||
'class="form-control validate-email' . (!empty($class) ? ' ' . $class : '') . '"',
|
||||
'id="' . $id . '"',
|
||||
'value="' . htmlspecialchars(PunycodeHelper::emailToUTF8($value), ENT_COMPAT, 'UTF-8') . '"',
|
||||
$spellcheck ? '' : 'spellcheck="false"',
|
||||
!empty($size) ? 'size="' . $size . '"' : '',
|
||||
!empty($description) ? 'aria-describedby="' . ($id ?: $name) . '-desc"' : '',
|
||||
$disabled ? 'disabled' : '',
|
||||
$readonly ? 'readonly' : '',
|
||||
$onchange ? 'onchange="' . $onchange . '"' : '',
|
||||
!empty($autocomplete) ? 'autocomplete="' . $autocomplete . '"' : '',
|
||||
$multiple ? 'multiple' : '',
|
||||
!empty($maxLength) ? 'maxlength="' . $maxLength . '"' : '',
|
||||
strlen($hint) ? 'placeholder="' . htmlspecialchars($hint, ENT_COMPAT, 'UTF-8') . '"' : '',
|
||||
$required ? 'required' : '',
|
||||
$autofocus ? 'autofocus' : '',
|
||||
$dataAttribute,
|
||||
];
|
||||
|
||||
echo '<input ' . implode(' ', array_values(array_filter($attributes))) . '>';
|
||||
@ -0,0 +1,69 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\Utility\Utility;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var string $autocomplete Autocomplete attribute for the field.
|
||||
* @var boolean $autofocus Is autofocus enabled?
|
||||
* @var string $class Classes for the input.
|
||||
* @var string $description Description of the field.
|
||||
* @var boolean $disabled Is this field disabled?
|
||||
* @var string $group Group the field belongs to. <fields> section in form XML.
|
||||
* @var boolean $hidden Is this field hidden in the form?
|
||||
* @var string $hint Placeholder for the field.
|
||||
* @var string $id DOM id of the field.
|
||||
* @var string $label Label of the field.
|
||||
* @var string $labelclass Classes to apply to the label.
|
||||
* @var boolean $multiple Does this field support multiple values?
|
||||
* @var string $name Name of the input field.
|
||||
* @var string $onchange Onchange attribute for the field.
|
||||
* @var string $onclick Onclick attribute for the field.
|
||||
* @var string $pattern Pattern (Reg Ex) of value of the form field.
|
||||
* @var boolean $readonly Is this field read only?
|
||||
* @var boolean $repeat Allows extensions to duplicate elements.
|
||||
* @var boolean $required Is this field required?
|
||||
* @var integer $size Size attribute of the input.
|
||||
* @var boolean $spellcheck Spellcheck state for the form field.
|
||||
* @var string $validate Validation rules to apply.
|
||||
* @var string $value Value attribute of the field.
|
||||
* @var array $checkedOptions Options that will be set as checked.
|
||||
* @var boolean $hasValue Has this field a value assigned?
|
||||
* @var array $options Options available for this field.
|
||||
* @var array $inputType Options available for this field.
|
||||
* @var string $accept File types that are accepted.
|
||||
* @var string $dataAttribute Miscellaneous data attributes preprocessed for HTML output
|
||||
* @var array $dataAttributes Miscellaneous data attribute for eg, data-*
|
||||
*/
|
||||
|
||||
$maxSize = HTMLHelper::_('number.bytes', Utility::getMaxUploadSize());
|
||||
|
||||
?>
|
||||
<input type="file"
|
||||
name="<?php echo $name; ?>"
|
||||
id="<?php echo $id; ?>"
|
||||
<?php echo !empty($size) ? ' size="' . $size . '"' : ''; ?>
|
||||
<?php echo !empty($accept) ? ' accept="' . $accept . '"' : ''; ?>
|
||||
<?php echo !empty($class) ? ' class="form-control ' . $class . '"' : ' class="form-control"'; ?>
|
||||
<?php echo !empty($multiple) ? ' multiple' : ''; ?>
|
||||
<?php echo $disabled ? ' disabled' : ''; ?>
|
||||
<?php echo $autofocus ? ' autofocus' : ''; ?>
|
||||
<?php echo $dataAttribute; ?>
|
||||
<?php echo !empty($onchange) ? ' onchange="' . $onchange . '"' : ''; ?>
|
||||
<?php echo $required ? ' required' : ''; ?>><br>
|
||||
<?php echo Text::sprintf('JGLOBAL_MAXIMUM_UPLOAD_SIZE_LIMIT', $maxSize); ?>
|
||||
@ -0,0 +1,122 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2021 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var string $autocomplete Autocomplete attribute for the field.
|
||||
* @var boolean $autofocus Is autofocus enabled?
|
||||
* @var string $class Classes for the input.
|
||||
* @var string $description Description of the field.
|
||||
* @var boolean $disabled Is this field disabled?
|
||||
* @var string $group Group the field belongs to. <fields> section in form XML.
|
||||
* @var boolean $hidden Is this field hidden in the form?
|
||||
* @var string $hint Placeholder for the field.
|
||||
* @var string $id DOM id of the field.
|
||||
* @var string $label Label of the field.
|
||||
* @var string $labelclass Classes to apply to the label.
|
||||
* @var boolean $multiple Does this field support multiple values?
|
||||
* @var string $name Name of the input field.
|
||||
* @var string $onchange Onchange attribute for the field.
|
||||
* @var string $onclick Onclick attribute for the field.
|
||||
* @var string $pattern Pattern (Reg Ex) of value of the form field.
|
||||
* @var boolean $readonly Is this field read only?
|
||||
* @var boolean $repeat Allows extensions to duplicate elements.
|
||||
* @var boolean $required Is this field required?
|
||||
* @var integer $size Size attribute of the input.
|
||||
* @var boolean $spellcheck Spellcheck state for the form field.
|
||||
* @var string $validate Validation rules to apply.
|
||||
* @var string $value Value attribute of the field.
|
||||
* @var array $groups Groups of options available for this field.
|
||||
* @var string $dataAttribute Miscellaneous data attributes preprocessed for HTML output
|
||||
* @var array $dataAttributes Miscellaneous data attribute for eg, data-*
|
||||
*/
|
||||
|
||||
$html = [];
|
||||
$attr = '';
|
||||
|
||||
// Initialize some field attributes.
|
||||
$attr .= !empty($size) ? ' size="' . $size . '"' : '';
|
||||
$attr .= $multiple ? ' multiple' : '';
|
||||
$attr .= $autofocus ? ' autofocus' : '';
|
||||
$attr .= $dataAttribute;
|
||||
|
||||
// To avoid user's confusion, readonly="true" should imply disabled="true".
|
||||
if ($readonly || $disabled) {
|
||||
$attr .= ' disabled="disabled"';
|
||||
}
|
||||
|
||||
// Initialize JavaScript field attributes.
|
||||
$attr .= !empty($onchange) ? ' onchange="' . $onchange . '"' : '';
|
||||
|
||||
$attr2 = '';
|
||||
$attr2 .= !empty($class) ? ' class="' . $class . '"' : '';
|
||||
$attr2 .= ' placeholder="' . $this->escape($hint ?: Text::_('JGLOBAL_TYPE_OR_SELECT_SOME_OPTIONS')) . '" ';
|
||||
|
||||
if ($required) {
|
||||
$attr .= ' required class="required"';
|
||||
$attr2 .= ' required';
|
||||
}
|
||||
|
||||
// Create a read-only list (no name) with a hidden input to store the value.
|
||||
if ($readonly) {
|
||||
$html[] = HTMLHelper::_(
|
||||
'select.groupedlist',
|
||||
$groups,
|
||||
null,
|
||||
[
|
||||
'list.attr' => $attr, 'id' => $id, 'list.select' => $value, 'group.items' => null, 'option.key.toHtml' => false,
|
||||
'option.text.toHtml' => false,
|
||||
]
|
||||
);
|
||||
|
||||
// E.g. form field type tag sends $this->value as array
|
||||
if ($multiple && \is_array($value)) {
|
||||
if (!\count($value)) {
|
||||
$value[] = '';
|
||||
}
|
||||
|
||||
foreach ($value as $val) {
|
||||
$html[] = '<input type="hidden" name="' . $name . '" value="' . htmlspecialchars($val, ENT_COMPAT, 'UTF-8') . '">';
|
||||
}
|
||||
} else {
|
||||
$html[] = '<input type="hidden" name="' . $name . '" value="' . htmlspecialchars($value, ENT_COMPAT, 'UTF-8') . '">';
|
||||
}
|
||||
} else {
|
||||
// Create a regular list.
|
||||
$html[] = HTMLHelper::_(
|
||||
'select.groupedlist',
|
||||
$groups,
|
||||
$name,
|
||||
[
|
||||
'list.attr' => $attr, 'id' => $id, 'list.select' => $value, 'group.items' => null, 'option.key.toHtml' => false,
|
||||
'option.text.toHtml' => false,
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
Text::script('JGLOBAL_SELECT_NO_RESULTS_MATCH');
|
||||
Text::script('JGLOBAL_SELECT_PRESS_TO_SELECT');
|
||||
|
||||
Factory::getApplication()->getDocument()->getWebAssetManager()
|
||||
->usePreset('choicesjs')
|
||||
->useScript('webcomponent.field-fancy-select');
|
||||
|
||||
?>
|
||||
|
||||
<joomla-field-fancy-select <?php echo $attr2; ?>><?php echo implode($html); ?></joomla-field-fancy-select>
|
||||
@ -0,0 +1,104 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2021 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var string $autocomplete Autocomplete attribute for the field.
|
||||
* @var boolean $autofocus Is autofocus enabled?
|
||||
* @var string $class Classes for the input.
|
||||
* @var string $description Description of the field.
|
||||
* @var boolean $disabled Is this field disabled?
|
||||
* @var string $group Group the field belongs to. <fields> section in form XML.
|
||||
* @var boolean $hidden Is this field hidden in the form?
|
||||
* @var string $hint Placeholder for the field.
|
||||
* @var string $id DOM id of the field.
|
||||
* @var string $label Label of the field.
|
||||
* @var string $labelclass Classes to apply to the label.
|
||||
* @var boolean $multiple Does this field support multiple values?
|
||||
* @var string $name Name of the input field.
|
||||
* @var string $onchange Onchange attribute for the field.
|
||||
* @var string $onclick Onclick attribute for the field.
|
||||
* @var string $pattern Pattern (Reg Ex) of value of the form field.
|
||||
* @var boolean $readonly Is this field read only?
|
||||
* @var boolean $repeat Allows extensions to duplicate elements.
|
||||
* @var boolean $required Is this field required?
|
||||
* @var integer $size Size attribute of the input.
|
||||
* @var boolean $spellcheck Spellcheck state for the form field.
|
||||
* @var string $validate Validation rules to apply.
|
||||
* @var string $value Value attribute of the field.
|
||||
* @var array $groups Groups of options available for this field.
|
||||
* @var string $dataAttribute Miscellaneous data attributes preprocessed for HTML output
|
||||
* @var array $dataAttributes Miscellaneous data attribute for eg, data-*
|
||||
*/
|
||||
|
||||
$html = [];
|
||||
$attr = '';
|
||||
|
||||
// Initialize some field attributes.
|
||||
$attr .= !empty($class) ? ' class="form-select ' . $class . '"' : ' class="form-select"';
|
||||
$attr .= !empty($size) ? ' size="' . $size . '"' : '';
|
||||
$attr .= $multiple ? ' multiple' : '';
|
||||
$attr .= $required ? ' required' : '';
|
||||
$attr .= $autofocus ? ' autofocus' : '';
|
||||
$attr .= $dataAttribute;
|
||||
|
||||
// To avoid user's confusion, readonly="true" should imply disabled="true".
|
||||
if ($readonly || $disabled) {
|
||||
$attr .= ' disabled="disabled"';
|
||||
}
|
||||
|
||||
// Initialize JavaScript field attributes.
|
||||
$attr .= !empty($onchange) ? ' onchange="' . $onchange . '"' : '';
|
||||
|
||||
// Create a read-only list (no name) with a hidden input to store the value.
|
||||
if ($readonly) {
|
||||
$html[] = HTMLHelper::_(
|
||||
'select.groupedlist',
|
||||
$groups,
|
||||
null,
|
||||
[
|
||||
'list.attr' => $attr, 'id' => $id, 'list.select' => $value, 'group.items' => null, 'option.key.toHtml' => false,
|
||||
'option.text.toHtml' => false,
|
||||
]
|
||||
);
|
||||
|
||||
// E.g. form field type tag sends $this->value as array
|
||||
if ($multiple && \is_array($value)) {
|
||||
if (!\count($value)) {
|
||||
$value[] = '';
|
||||
}
|
||||
|
||||
foreach ($value as $val) {
|
||||
$html[] = '<input type="hidden" name="' . $name . '" value="' . htmlspecialchars($val, ENT_COMPAT, 'UTF-8') . '">';
|
||||
}
|
||||
} else {
|
||||
$html[] = '<input type="hidden" name="' . $name . '" value="' . htmlspecialchars($value, ENT_COMPAT, 'UTF-8') . '">';
|
||||
}
|
||||
} else {
|
||||
// Create a regular list.
|
||||
$html[] = HTMLHelper::_(
|
||||
'select.groupedlist',
|
||||
$groups,
|
||||
$name,
|
||||
[
|
||||
'list.attr' => $attr, 'id' => $id, 'list.select' => $value, 'group.items' => null, 'option.key.toHtml' => false,
|
||||
'option.text.toHtml' => false,
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
echo implode($html);
|
||||
@ -0,0 +1,59 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var string $autocomplete Autocomplete attribute for the field.
|
||||
* @var boolean $autofocus Is autofocus enabled?
|
||||
* @var string $class Classes for the input.
|
||||
* @var string $description Description of the field.
|
||||
* @var boolean $disabled Is this field disabled?
|
||||
* @var string $group Group the field belongs to. <fields> section in form XML.
|
||||
* @var boolean $hidden Is this field hidden in the form?
|
||||
* @var string $hint Placeholder for the field.
|
||||
* @var string $id DOM id of the field.
|
||||
* @var string $label Label of the field.
|
||||
* @var string $labelclass Classes to apply to the label.
|
||||
* @var boolean $multiple Does this field support multiple values?
|
||||
* @var string $name Name of the input field.
|
||||
* @var string $onchange Onchange attribute for the field.
|
||||
* @var string $onclick Onclick attribute for the field.
|
||||
* @var string $pattern Pattern (Reg Ex) of value of the form field.
|
||||
* @var boolean $readonly Is this field read only?
|
||||
* @var boolean $repeat Allows extensions to duplicate elements.
|
||||
* @var boolean $required Is this field required?
|
||||
* @var integer $size Size attribute of the input.
|
||||
* @var boolean $spellcheck Spellcheck state for the form field.
|
||||
* @var string $validate Validation rules to apply.
|
||||
* @var string $value Value attribute of the field.
|
||||
* @var array $checkedOptions Options that will be set as checked.
|
||||
* @var boolean $hasValue Has this field a value assigned?
|
||||
* @var array $options Options available for this field.
|
||||
* @var array $inputType Options available for this field.
|
||||
* @var string $dataAttribute Miscellaneous data attributes preprocessed for HTML output
|
||||
* @var array $dataAttributes Miscellaneous data attribute for eg, data-*
|
||||
*/
|
||||
|
||||
// Initialize some field attributes.
|
||||
$class = !empty($class) ? ' class="' . $class . '"' : '';
|
||||
$disabled = $disabled ? ' disabled' : '';
|
||||
$onchange = $onchange ? ' onchange="' . $onchange . '"' : '';
|
||||
?>
|
||||
<input
|
||||
type="hidden"
|
||||
name="<?php echo $name; ?>"
|
||||
id="<?php echo $id; ?>"
|
||||
value="<?php echo htmlspecialchars($value, ENT_COMPAT, 'UTF-8'); ?>"
|
||||
<?php echo $class, $disabled, $onchange, $dataAttribute; ?>>
|
||||
@ -0,0 +1,104 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2018 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var string $autocomplete Autocomplete attribute for the field.
|
||||
* @var boolean $autofocus Is autofocus enabled?
|
||||
* @var string $class Classes for the input.
|
||||
* @var string $description Description of the field.
|
||||
* @var boolean $disabled Is this field disabled?
|
||||
* @var string $group Group the field belongs to. <fields> section in form XML.
|
||||
* @var boolean $hidden Is this field hidden in the form?
|
||||
* @var string $hint Placeholder for the field.
|
||||
* @var string $id DOM id of the field.
|
||||
* @var string $label Label of the field.
|
||||
* @var string $labelclass Classes to apply to the label.
|
||||
* @var boolean $multiple Does this field support multiple values?
|
||||
* @var string $name Name of the input field.
|
||||
* @var string $onchange Onchange attribute for the field.
|
||||
* @var string $onclick Onclick attribute for the field.
|
||||
* @var string $pattern Pattern (Reg Ex) of value of the form field.
|
||||
* @var boolean $readonly Is this field read only?
|
||||
* @var boolean $repeat Allows extensions to duplicate elements.
|
||||
* @var boolean $required Is this field required?
|
||||
* @var integer $size Size attribute of the input.
|
||||
* @var boolean $spellcheck Spellcheck state for the form field.
|
||||
* @var string $validate Validation rules to apply.
|
||||
* @var string $value Value attribute of the field.
|
||||
* @var array $options Options available for this field.
|
||||
* @var string $dataAttribute Miscellaneous data attributes preprocessed for HTML output
|
||||
* @var array $dataAttributes Miscellaneous data attribute for eg, data-*
|
||||
*/
|
||||
|
||||
$html = [];
|
||||
$attr = '';
|
||||
|
||||
// Initialize the field attributes.
|
||||
$attr .= !empty($size) ? ' size="' . $size . '"' : '';
|
||||
$attr .= $multiple ? ' multiple' : '';
|
||||
$attr .= $autofocus ? ' autofocus' : '';
|
||||
$attr .= $onchange ? ' onchange="' . $onchange . '"' : '';
|
||||
$attr .= $dataAttribute;
|
||||
|
||||
// To avoid user's confusion, readonly="readonly" should imply disabled="disabled".
|
||||
if ($readonly || $disabled) {
|
||||
$attr .= ' disabled="disabled"';
|
||||
}
|
||||
|
||||
$attr2 = '';
|
||||
$attr2 .= !empty($class) ? ' class="' . $class . '"' : '';
|
||||
$attr2 .= ' placeholder="' . $this->escape($hint ?: Text::_('JGLOBAL_TYPE_OR_SELECT_SOME_OPTIONS')) . '" ';
|
||||
|
||||
if ($required) {
|
||||
$attr .= ' required class="required"';
|
||||
$attr2 .= ' required';
|
||||
}
|
||||
|
||||
// Create a read-only list (no name) with hidden input(s) to store the value(s).
|
||||
if ($readonly) {
|
||||
$html[] = HTMLHelper::_('select.genericlist', $options, '', trim($attr), 'value', 'text', $value, $id);
|
||||
|
||||
// E.g. form field type tag sends $this->value as array
|
||||
if ($multiple && is_array($value)) {
|
||||
if (!count($value)) {
|
||||
$value[] = '';
|
||||
}
|
||||
|
||||
foreach ($value as $val) {
|
||||
$html[] = '<input type="hidden" name="' . $name . '" value="' . htmlspecialchars($val, ENT_COMPAT, 'UTF-8') . '">';
|
||||
}
|
||||
} else {
|
||||
$html[] = '<input type="hidden" name="' . $name . '" value="' . htmlspecialchars($value, ENT_COMPAT, 'UTF-8') . '">';
|
||||
}
|
||||
} else // Create a regular list.
|
||||
{
|
||||
$html[] = HTMLHelper::_('select.genericlist', $options, $name, trim($attr), 'value', 'text', $value, $id);
|
||||
}
|
||||
|
||||
Text::script('JGLOBAL_SELECT_NO_RESULTS_MATCH');
|
||||
Text::script('JGLOBAL_SELECT_PRESS_TO_SELECT');
|
||||
|
||||
Factory::getApplication()->getDocument()->getWebAssetManager()
|
||||
->usePreset('choicesjs')
|
||||
->useScript('webcomponent.field-fancy-select');
|
||||
|
||||
?>
|
||||
|
||||
<joomla-field-fancy-select <?php echo $attr2; ?>><?php echo implode($html); ?></joomla-field-fancy-select>
|
||||
@ -0,0 +1,95 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2018 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var string $autocomplete Autocomplete attribute for the field.
|
||||
* @var boolean $autofocus Is autofocus enabled?
|
||||
* @var string $class Classes for the input.
|
||||
* @var string $description Description of the field.
|
||||
* @var boolean $disabled Is this field disabled?
|
||||
* @var string $group Group the field belongs to. <fields> section in form XML.
|
||||
* @var boolean $hidden Is this field hidden in the form?
|
||||
* @var string $hint Placeholder for the field.
|
||||
* @var string $id DOM id of the field.
|
||||
* @var string $label Label of the field.
|
||||
* @var string $labelclass Classes to apply to the label.
|
||||
* @var boolean $multiple Does this field support multiple values?
|
||||
* @var string $name Name of the input field.
|
||||
* @var string $onchange Onchange attribute for the field.
|
||||
* @var string $onclick Onclick attribute for the field.
|
||||
* @var string $pattern Pattern (Reg Ex) of value of the form field.
|
||||
* @var boolean $readonly Is this field read only?
|
||||
* @var boolean $repeat Allows extensions to duplicate elements.
|
||||
* @var boolean $required Is this field required?
|
||||
* @var integer $size Size attribute of the input.
|
||||
* @var boolean $spellcheck Spellcheck state for the form field.
|
||||
* @var string $validate Validation rules to apply.
|
||||
* @var string $value Value attribute of the field.
|
||||
* @var array $options Options available for this field.
|
||||
* @var string $dataAttribute Miscellaneous data attributes preprocessed for HTML output
|
||||
* @var array $dataAttributes Miscellaneous data attribute for eg, data-*
|
||||
*/
|
||||
|
||||
$html = [];
|
||||
$attr = '';
|
||||
|
||||
// Initialize the field attributes.
|
||||
$attr .= !empty($class) ? ' class="form-select ' . $class . '"' : ' class="form-select"';
|
||||
$attr .= !empty($size) ? ' size="' . $size . '"' : '';
|
||||
$attr .= $multiple ? ' multiple' : '';
|
||||
$attr .= $required ? ' required' : '';
|
||||
$attr .= $autofocus ? ' autofocus' : '';
|
||||
$attr .= $onchange ? ' onchange="' . $onchange . '"' : '';
|
||||
$attr .= !empty($description) ? ' aria-describedby="' . ($id ?: $name) . '-desc"' : '';
|
||||
$attr .= $dataAttribute;
|
||||
|
||||
// To avoid user's confusion, readonly="readonly" should imply disabled="disabled".
|
||||
if ($readonly || $disabled) {
|
||||
$attr .= ' disabled="disabled"';
|
||||
}
|
||||
|
||||
// Create a read-only list (no name) with hidden input(s) to store the value(s).
|
||||
if ($readonly) {
|
||||
$html[] = HTMLHelper::_('select.genericlist', $options, '', trim($attr), 'value', 'text', $value, $id);
|
||||
|
||||
// E.g. form field type tag sends $this->value as array
|
||||
if ($multiple && is_array($value)) {
|
||||
if (!count($value)) {
|
||||
$value[] = '';
|
||||
}
|
||||
|
||||
foreach ($value as $val) {
|
||||
$html[] = '<input type="hidden" name="' . $name . '" value="' . htmlspecialchars($val, ENT_COMPAT, 'UTF-8') . '">';
|
||||
}
|
||||
} else {
|
||||
$html[] = '<input type="hidden" name="' . $name . '" value="' . htmlspecialchars($value, ENT_COMPAT, 'UTF-8') . '">';
|
||||
}
|
||||
} else // Create a regular list passing the arguments in an array.
|
||||
{
|
||||
$listoptions = [];
|
||||
$listoptions['option.key'] = 'value';
|
||||
$listoptions['option.text'] = 'text';
|
||||
$listoptions['list.select'] = $value;
|
||||
$listoptions['id'] = $id;
|
||||
$listoptions['list.translate'] = false;
|
||||
$listoptions['option.attr'] = 'optionattr';
|
||||
$listoptions['list.attr'] = trim($attr);
|
||||
$html[] = HTMLHelper::_('select.genericlist', $options, $name, $listoptions);
|
||||
}
|
||||
|
||||
echo implode($html);
|
||||
@ -0,0 +1,203 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Admin
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2015 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Component\ComponentHelper;
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\Helper\MediaHelper;
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\Router\Route;
|
||||
use Joomla\CMS\Uri\Uri;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var string $asset The asset text
|
||||
* @var string $authorField The label text
|
||||
* @var integer $authorId The author id
|
||||
* @var string $class The class text
|
||||
* @var boolean $disabled True if field is disabled
|
||||
* @var string $folder The folder text
|
||||
* @var string $id The label text
|
||||
* @var string $link The link text
|
||||
* @var string $name The name text
|
||||
* @var string $preview The preview image relative path
|
||||
* @var integer $previewHeight The image preview height
|
||||
* @var integer $previewWidth The image preview width
|
||||
* @var string $onchange The onchange text
|
||||
* @var boolean $readonly True if field is readonly
|
||||
* @var integer $size The size text
|
||||
* @var string $value The value text
|
||||
* @var string $src The path and filename of the image
|
||||
* @var array $mediaTypes The supported media types for the Media Manager
|
||||
* @var array $imagesExt The supported extensions for images
|
||||
* @var array $audiosExt The supported extensions for audios
|
||||
* @var array $videosExt The supported extensions for videos
|
||||
* @var array $documentsExt The supported extensions for documents
|
||||
* @var string $dataAttribute Miscellaneous data attributes preprocessed for HTML output
|
||||
* @var array $dataAttributes Miscellaneous data attribute for eg, data-*
|
||||
*/
|
||||
|
||||
$attr = '';
|
||||
|
||||
// Initialize some field attributes.
|
||||
$attr .= !empty($class) ? ' class="form-control field-media-input ' . $class . '"' : ' class="form-control field-media-input"';
|
||||
$attr .= !empty($size) ? ' size="' . $size . '"' : '';
|
||||
$attr .= $dataAttribute;
|
||||
|
||||
// Initialize JavaScript field attributes.
|
||||
$attr .= !empty($onchange) ? ' onchange="' . $onchange . '"' : '';
|
||||
|
||||
switch ($preview) {
|
||||
case 'no': // Deprecated parameter value
|
||||
case 'false':
|
||||
case 'none':
|
||||
$showPreview = false;
|
||||
break;
|
||||
case 'yes': // Deprecated parameter value
|
||||
case 'true':
|
||||
case 'show':
|
||||
case 'tooltip':
|
||||
default:
|
||||
$showPreview = true;
|
||||
break;
|
||||
}
|
||||
|
||||
// Pre fill the contents of the popover
|
||||
if ($showPreview) {
|
||||
$cleanValue = MediaHelper::getCleanMediaFieldValue($value);
|
||||
|
||||
if ($cleanValue && file_exists(JPATH_ROOT . '/' . $cleanValue)) {
|
||||
$src = Uri::root() . $value;
|
||||
} else {
|
||||
$src = '';
|
||||
}
|
||||
|
||||
$width = $previewWidth;
|
||||
$height = $previewHeight;
|
||||
$style = '';
|
||||
$style .= ($width > 0) ? 'max-width:' . $width . 'px;' : '';
|
||||
$style .= ($height > 0) ? 'max-height:' . $height . 'px;' : '';
|
||||
|
||||
$imgattr = [
|
||||
'id' => $id . '_preview',
|
||||
'class' => 'media-preview',
|
||||
'style' => $style,
|
||||
];
|
||||
|
||||
$img = HTMLHelper::_('image', $src, Text::_('JLIB_FORM_MEDIA_PREVIEW_ALT'), $imgattr);
|
||||
|
||||
$previewImg = '<div id="' . $id . '_preview_img">' . $img . '</div>';
|
||||
$previewImgEmpty = '<div id="' . $id . '_preview_empty"' . ($src ? ' class="hidden"' : '') . '>'
|
||||
. Text::_('JLIB_FORM_MEDIA_PREVIEW_EMPTY') . '</div>';
|
||||
|
||||
$showPreview = 'static';
|
||||
}
|
||||
|
||||
// The url for the modal
|
||||
$url = ($readonly ? ''
|
||||
: ($link ?: 'index.php?option=com_media&view=media&tmpl=component&mediatypes=' . $mediaTypes
|
||||
. '&asset=' . $asset . '&author=' . $authorId)
|
||||
. '&fieldid={field-media-id}&path=' . $folder);
|
||||
|
||||
// Correctly route the url to ensure it's correctly using sef modes and subfolders
|
||||
$url = Route::_($url);
|
||||
$doc = Factory::getDocument();
|
||||
$wam = $doc->getWebAssetManager();
|
||||
|
||||
$wam->useScript('webcomponent.media-select');
|
||||
$doc->addScriptOptions('media-picker-api', ['apiBaseUrl' => Uri::base() . 'index.php?option=com_media&format=json']);
|
||||
|
||||
Text::script('JFIELD_MEDIA_LAZY_LABEL');
|
||||
Text::script('JFIELD_MEDIA_ALT_LABEL');
|
||||
Text::script('JFIELD_MEDIA_ALT_CHECK_LABEL');
|
||||
Text::script('JFIELD_MEDIA_ALT_CHECK_DESC_LABEL');
|
||||
Text::script('JFIELD_MEDIA_CLASS_LABEL');
|
||||
Text::script('JFIELD_MEDIA_FIGURE_CLASS_LABEL');
|
||||
Text::script('JFIELD_MEDIA_FIGURE_CAPTION_LABEL');
|
||||
Text::script('JFIELD_MEDIA_LAZY_LABEL');
|
||||
Text::script('JFIELD_MEDIA_SUMMARY_LABEL');
|
||||
Text::script('JFIELD_MEDIA_EMBED_CHECK_DESC_LABEL');
|
||||
Text::script('JFIELD_MEDIA_DOWNLOAD_CHECK_DESC_LABEL');
|
||||
Text::script('JFIELD_MEDIA_DOWNLOAD_CHECK_LABEL');
|
||||
Text::script('JFIELD_MEDIA_EMBED_CHECK_LABEL');
|
||||
Text::script('JFIELD_MEDIA_WIDTH_LABEL');
|
||||
Text::script('JFIELD_MEDIA_TITLE_LABEL');
|
||||
Text::script('JFIELD_MEDIA_HEIGHT_LABEL');
|
||||
Text::script('JFIELD_MEDIA_UNSUPPORTED');
|
||||
Text::script('JFIELD_MEDIA_DOWNLOAD_FILE');
|
||||
Text::script('JLIB_APPLICATION_ERROR_SERVER');
|
||||
Text::script('JLIB_FORM_MEDIA_PREVIEW_EMPTY', true);
|
||||
|
||||
$modalHTML = HTMLHelper::_(
|
||||
'bootstrap.renderModal',
|
||||
'imageModal_' . $id,
|
||||
[
|
||||
'url' => $url,
|
||||
'title' => Text::_('JLIB_FORM_CHANGE_IMAGE'),
|
||||
'closeButton' => true,
|
||||
'height' => '100%',
|
||||
'width' => '100%',
|
||||
'modalWidth' => '80',
|
||||
'bodyHeight' => '60',
|
||||
'footer' => '<button type="button" class="btn btn-success button-save-selected">' . Text::_('JSELECT') . '</button>'
|
||||
. '<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">' . Text::_('JCANCEL') . '</button>',
|
||||
]
|
||||
);
|
||||
|
||||
$wam->useStyle('webcomponent.field-media')
|
||||
->useScript('webcomponent.field-media');
|
||||
|
||||
if (count($doc->getScriptOptions('media-picker')) === 0) {
|
||||
$doc->addScriptOptions('media-picker', [
|
||||
'images' => $imagesExt,
|
||||
'audios' => $audiosExt,
|
||||
'videos' => $videosExt,
|
||||
'documents' => $documentsExt,
|
||||
]);
|
||||
}
|
||||
|
||||
?>
|
||||
<joomla-field-media class="field-media-wrapper" type="image" <?php // @TODO add this attribute to the field in order to use it for all media types ?>
|
||||
base-path="<?php echo Uri::root(); ?>"
|
||||
root-folder="<?php echo ComponentHelper::getParams('com_media')->get('file_path', 'images'); ?>"
|
||||
url="<?php echo $url; ?>"
|
||||
modal-container=".modal"
|
||||
modal-width="100%"
|
||||
modal-height="400px"
|
||||
input=".field-media-input"
|
||||
button-select=".button-select"
|
||||
button-clear=".button-clear"
|
||||
button-save-selected=".button-save-selected"
|
||||
preview="static"
|
||||
preview-container=".field-media-preview"
|
||||
preview-width="<?php echo $previewWidth; ?>"
|
||||
preview-height="<?php echo $previewHeight; ?>"
|
||||
supported-extensions="<?php echo str_replace('"', '"', json_encode(['images' => $imagesAllowedExt, 'audios' => $audiosAllowedExt, 'videos' => $videosAllowedExt, 'documents' => $documentsAllowedExt])); ?>
|
||||
">
|
||||
<?php echo $modalHTML; ?>
|
||||
<?php if ($showPreview) : ?>
|
||||
<div class="field-media-preview">
|
||||
<?php echo ' ' . $previewImgEmpty; ?>
|
||||
<?php echo ' ' . $previewImg; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<div class="input-group">
|
||||
<input type="text" name="<?php echo $name; ?>" id="<?php echo $id; ?>" value="<?php echo htmlspecialchars($value, ENT_COMPAT, 'UTF-8'); ?>" <?php echo $attr; ?>>
|
||||
<?php if ($disabled != true) : ?>
|
||||
<button type="button" class="btn btn-success button-select"><?php echo Text::_('JLIB_FORM_BUTTON_SELECT'); ?></button>
|
||||
<button type="button" class="btn btn-danger button-clear"><span class="icon-times" aria-hidden="true"></span><span class="visually-hidden"><?php echo Text::_('JLIB_FORM_BUTTON_CLEAR'); ?></span></button>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</joomla-field-media>
|
||||
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2020 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
$form = $forms[0];
|
||||
|
||||
$formfields = $form->getGroup('');
|
||||
?>
|
||||
|
||||
<div class="subform-wrapper">
|
||||
<?php foreach ($formfields as $field) : ?>
|
||||
<?php echo $field->renderField(); ?>
|
||||
<?php endforeach; ?>
|
||||
</div>
|
||||
@ -0,0 +1,82 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var string $autocomplete Autocomplete attribute for the field.
|
||||
* @var boolean $autofocus Is autofocus enabled?
|
||||
* @var string $class Classes for the input.
|
||||
* @var string $description Description of the field.
|
||||
* @var boolean $disabled Is this field disabled?
|
||||
* @var string $group Group the field belongs to. <fields> section in form XML.
|
||||
* @var boolean $hidden Is this field hidden in the form?
|
||||
* @var string $hint Placeholder for the field.
|
||||
* @var string $id DOM id of the field.
|
||||
* @var string $label Label of the field.
|
||||
* @var string $labelclass Classes to apply to the label.
|
||||
* @var boolean $multiple Does this field support multiple values?
|
||||
* @var string $name Name of the input field.
|
||||
* @var string $onchange Onchange attribute for the field.
|
||||
* @var string $onclick Onclick attribute for the field.
|
||||
* @var string $pattern Pattern (Reg Ex) of value of the form field.
|
||||
* @var boolean $readonly Is this field read only?
|
||||
* @var boolean $repeat Allows extensions to duplicate elements.
|
||||
* @var boolean $required Is this field required?
|
||||
* @var integer $size Size attribute of the input.
|
||||
* @var boolean $spellcheck Spellcheck state for the form field.
|
||||
* @var string $validate Validation rules to apply.
|
||||
* @var string $value Value attribute of the field.
|
||||
* @var array $checkedOptions Options that will be set as checked.
|
||||
* @var boolean $hasValue Has this field a value assigned?
|
||||
* @var array $options Options available for this field.
|
||||
* @var array $inputType Options available for this field.
|
||||
* @var string $accept File types that are accepted.
|
||||
* @var string $animated Is it animated.
|
||||
* @var string $active Is it active.
|
||||
* @var string $max The maximum value.
|
||||
* @var string $dataAttribute Miscellaneous data attributes preprocessed for HTML output
|
||||
* @var array $dataAttributes Miscellaneous data attribute for eg, data-*
|
||||
*/
|
||||
|
||||
// Initialize some field attributes.
|
||||
$class = 'progress-bar ' . $class;
|
||||
$class .= $animated ? ' progress-bar-striped progress-bar-animated' : '';
|
||||
$class .= $active ? ' active' : '';
|
||||
$class = 'class="' . $class . '"';
|
||||
|
||||
$value = (float) $value;
|
||||
$value = $value < $min ? $min : $value;
|
||||
$value = $value > $max ? $max : $value;
|
||||
|
||||
$data = '';
|
||||
$data .= 'aria-valuemax="' . $max . '"';
|
||||
$data .= ' aria-valuemin="' . $min . '"';
|
||||
$data .= ' aria-valuenow="' . $value . '"';
|
||||
|
||||
$attributes = [
|
||||
$class,
|
||||
!empty($width) ? ' style="width:' . $width . ';"' : '',
|
||||
$data,
|
||||
$dataAttribute,
|
||||
];
|
||||
|
||||
$value = ((float) ($value - $min) * 100) / ($max - $min);
|
||||
?>
|
||||
<div class="progress">
|
||||
<div
|
||||
role="progressbar"
|
||||
<?php echo implode(' ', $attributes); ?>
|
||||
style="width:<?php echo (string) $value; ?>%;<?php echo !empty($color) ? ' background-color:' . $color . ';' : ''; ?>"></div>
|
||||
</div>
|
||||
@ -0,0 +1,86 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Factory;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var string $autocomplete Autocomplete attribute for the field.
|
||||
* @var boolean $autofocus Is autofocus enabled?
|
||||
* @var string $class Classes for the input.
|
||||
* @var string $description Description of the field.
|
||||
* @var boolean $disabled Is this field disabled?
|
||||
* @var string $group Group the field belongs to. <fields> section in form XML.
|
||||
* @var boolean $hidden Is this field hidden in the form?
|
||||
* @var string $hint Placeholder for the field.
|
||||
* @var string $id DOM id of the field.
|
||||
* @var string $label Label of the field.
|
||||
* @var string $labelclass Classes to apply to the label.
|
||||
* @var boolean $multiple Does this field support multiple values?
|
||||
* @var string $name Name of the input field.
|
||||
* @var string $onchange Onchange attribute for the field.
|
||||
* @var string $onclick Onclick attribute for the field.
|
||||
* @var string $pattern Pattern (Reg Ex) of value of the form field.
|
||||
* @var boolean $readonly Is this field read only?
|
||||
* @var boolean $repeat Allows extensions to duplicate elements.
|
||||
* @var boolean $required Is this field required?
|
||||
* @var integer $size Size attribute of the input.
|
||||
* @var boolean $spellcheck Spellcheck state for the form field.
|
||||
* @var string $validate Validation rules to apply.
|
||||
* @var string $value Value attribute of the field.
|
||||
* @var array $checkedOptions Options that will be set as checked.
|
||||
* @var boolean $hasValue Has this field a value assigned?
|
||||
* @var array $options Options available for this field.
|
||||
* @var array $inputType Options available for this field.
|
||||
* @var string $accept File types that are accepted.
|
||||
* @var string $dataAttribute Miscellaneous data attributes preprocessed for HTML output
|
||||
* @var array $dataAttributes Miscellaneous data attributes for eg, data-*.
|
||||
*/
|
||||
|
||||
// Initialize some field attributes.
|
||||
$attributes['dataid'] = 'data-id="' . $id . '"';
|
||||
$attributes['data-url'] = 'data-url="index.php?option=com_modules&task=module.orderPosition&' . $token . '"';
|
||||
$attributes['data-element'] = 'data-element="parent_' . $id . '"';
|
||||
$attributes['data-ordering'] = 'data-ordering="' . $ordering . '"';
|
||||
$attributes['data-position-element'] = 'data-position-element="' . $element . '"';
|
||||
$attributes['data-client-id'] = 'data-client-id="' . $clientId . '"';
|
||||
$attributes['data-name'] = 'data-name="' . $name . '"';
|
||||
$attributes['data-module-id'] = 'data-module-id="' . $moduleId . '"';
|
||||
|
||||
if ($disabled) {
|
||||
$attributes['disabled'] = 'disabled';
|
||||
}
|
||||
|
||||
if ($class) {
|
||||
$attributes['class'] = 'class="' . $class . '"';
|
||||
}
|
||||
|
||||
if ($size) {
|
||||
$attributes['size'] = 'size="' . $size . '"';
|
||||
}
|
||||
|
||||
if ($onchange) {
|
||||
$attributes['onchange'] = 'onchange="' . $onchange . '"';
|
||||
}
|
||||
|
||||
if ($dataAttribute) {
|
||||
$attributes['dataAttribute'] = $dataAttribute;
|
||||
}
|
||||
|
||||
Factory::getDocument()->getWebAssetManager()
|
||||
->useScript('webcomponent.field-module-order');
|
||||
|
||||
?>
|
||||
<joomla-field-module-order <?php echo implode(' ', $attributes); ?>></joomla-field-module-order>
|
||||
@ -0,0 +1,78 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var string $autocomplete Autocomplete attribute for the field.
|
||||
* @var boolean $autofocus Is autofocus enabled?
|
||||
* @var string $class Classes for the input.
|
||||
* @var string $description Description of the field.
|
||||
* @var boolean $disabled Is this field disabled?
|
||||
* @var string $group Group the field belongs to. <fields> section in form XML.
|
||||
* @var boolean $hidden Is this field hidden in the form?
|
||||
* @var string $hint Placeholder for the field.
|
||||
* @var string $id DOM id of the field.
|
||||
* @var string $label Label of the field.
|
||||
* @var string $labelclass Classes to apply to the label.
|
||||
* @var boolean $multiple Does this field support multiple values?
|
||||
* @var string $name Name of the input field.
|
||||
* @var string $onchange Onchange attribute for the field.
|
||||
* @var string $onclick Onclick attribute for the field.
|
||||
* @var string $pattern Pattern (Reg Ex) of value of the form field.
|
||||
* @var boolean $readonly Is this field read only?
|
||||
* @var boolean $repeat Allows extensions to duplicate elements.
|
||||
* @var boolean $required Is this field required?
|
||||
* @var boolean $spellcheck Spellcheck state for the form field.
|
||||
* @var string $validate Validation rules to apply.
|
||||
* @var string $value Value attribute of the field.
|
||||
* @var array $checkedOptions Options that will be set as checked.
|
||||
* @var boolean $hasValue Has this field a value assigned?
|
||||
* @var array $options Options available for this field.
|
||||
* @var array $inputType Options available for this field.
|
||||
* @var string $accept File types that are accepted.
|
||||
* @var string $dataAttribute Miscellaneous data attributes preprocessed for HTML output
|
||||
* @var array $dataAttributes Miscellaneous data attribute for eg, data-*.
|
||||
*/
|
||||
|
||||
$attributes = [
|
||||
!empty($class) ? 'class="form-control ' . $class . '"' : 'class="form-control"',
|
||||
!empty($description) ? 'aria-describedby="' . ($id ?: $name) . '-desc"' : '',
|
||||
$disabled ? 'disabled' : '',
|
||||
$readonly ? 'readonly' : '',
|
||||
strlen($hint) ? 'placeholder="' . htmlspecialchars($hint, ENT_COMPAT, 'UTF-8') . '"' : '',
|
||||
!empty($onchange) ? 'onchange="' . $onchange . '"' : '',
|
||||
isset($max) ? 'max="' . $max . '"' : '',
|
||||
!empty($step) ? 'step="' . $step . '"' : '',
|
||||
isset($min) ? 'min="' . $min . '"' : '',
|
||||
$required ? 'required' : '',
|
||||
!empty($autocomplete) ? 'autocomplete="' . $autocomplete . '"' : '',
|
||||
$autofocus ? 'autofocus' : '',
|
||||
$dataAttribute,
|
||||
];
|
||||
|
||||
if (is_numeric($value)) {
|
||||
$value = (float) $value;
|
||||
} else {
|
||||
$value = '';
|
||||
$value = ($required && isset($min)) ? $min : $value;
|
||||
}
|
||||
?>
|
||||
<input
|
||||
type="number"
|
||||
inputmode="numeric"
|
||||
name="<?php echo $name; ?>"
|
||||
id="<?php echo $id; ?>"
|
||||
value="<?php echo htmlspecialchars($value, ENT_COMPAT, 'UTF-8'); ?>"
|
||||
<?php echo implode(' ', $attributes); ?>>
|
||||
@ -0,0 +1,165 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\Uri\Uri;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var string $autocomplete Autocomplete attribute for the field.
|
||||
* @var boolean $autofocus Is autofocus enabled?
|
||||
* @var string $class Classes for the input.
|
||||
* @var string $description Description of the field.
|
||||
* @var boolean $disabled Is this field disabled?
|
||||
* @var string $group Group the field belongs to. <fields> section in form XML.
|
||||
* @var boolean $hidden Is this field hidden in the form?
|
||||
* @var string $hint Placeholder for the field.
|
||||
* @var string $id DOM id of the field.
|
||||
* @var string $label Label of the field.
|
||||
* @var string $labelclass Classes to apply to the label.
|
||||
* @var boolean $multiple Does this field support multiple values?
|
||||
* @var string $name Name of the input field.
|
||||
* @var string $onchange Onchange attribute for the field.
|
||||
* @var string $onclick Onclick attribute for the field.
|
||||
* @var string $pattern Pattern (Reg Ex) of value of the form field.
|
||||
* @var boolean $readonly Is this field read only?
|
||||
* @var boolean $repeat Allows extensions to duplicate elements.
|
||||
* @var boolean $required Is this field required?
|
||||
* @var boolean $rules Are the rules to be displayed?
|
||||
* @var integer $size Size attribute of the input.
|
||||
* @var boolean $spellcheck Spellcheck state for the form field.
|
||||
* @var string $validate Validation rules to apply.
|
||||
* @var string $value Value attribute of the field.
|
||||
* @var array $checkedOptions Options that will be set as checked.
|
||||
* @var boolean $hasValue Has this field a value assigned?
|
||||
* @var array $options Options available for this field.
|
||||
* @var array $inputType Options available for this field.
|
||||
* @var string $accept File types that are accepted.
|
||||
* @var string $dataAttribute Miscellaneous data attributes preprocessed for HTML output
|
||||
* @var array $dataAttributes Miscellaneous data attribute for eg, data-*.
|
||||
* @var boolean $lock Is this field locked.
|
||||
*/
|
||||
|
||||
$document = Factory::getApplication()->getDocument();
|
||||
|
||||
/** @var Joomla\CMS\WebAsset\WebAssetManager $wa */
|
||||
$wa = $document->getWebAssetManager();
|
||||
|
||||
if ($meter) {
|
||||
$wa->useScript('field.passwordstrength');
|
||||
|
||||
$class = 'js-password-strength ' . $class;
|
||||
|
||||
if ($forcePassword) {
|
||||
$class = $class . ' meteredPassword';
|
||||
}
|
||||
}
|
||||
|
||||
$baseImagePath = Uri::root(false) . "media/templates/site/joomla-italia-theme/images/";
|
||||
|
||||
$wa->useScript('field.passwordview');
|
||||
|
||||
Text::script('JFIELD_PASSWORD_INDICATE_INCOMPLETE');
|
||||
Text::script('JFIELD_PASSWORD_INDICATE_COMPLETE');
|
||||
Text::script('JSHOWPASSWORD');
|
||||
Text::script('JHIDEPASSWORD');
|
||||
|
||||
if ($lock) {
|
||||
Text::script('JMODIFY');
|
||||
Text::script('JCANCEL');
|
||||
|
||||
$disabled = true;
|
||||
$hint = str_repeat('•', 10);
|
||||
$value = '';
|
||||
}
|
||||
|
||||
$ariaDescribedBy = $rules ? $name . '-rules ' : '';
|
||||
$ariaDescribedBy .= !empty($description) ? (($id ?: $name) . '-desc') : '';
|
||||
|
||||
$attributes = [
|
||||
strlen($hint) ? 'placeholder="' . htmlspecialchars($hint, ENT_COMPAT, 'UTF-8') . '"' : '',
|
||||
!empty($autocomplete) ? 'autocomplete="' . $autocomplete . '"' : '',
|
||||
!empty($class) ? 'class="form-control ' . $class . '"' : 'class="form-control"',
|
||||
!empty($ariaDescribedBy) ? 'aria-describedby="' . trim($ariaDescribedBy) . '"' : '',
|
||||
$readonly ? 'readonly' : '',
|
||||
$disabled ? 'disabled' : '',
|
||||
!empty($size) ? 'size="' . $size . '"' : '',
|
||||
!empty($maxLength) ? 'maxlength="' . $maxLength . '"' : '',
|
||||
$required ? 'required' : '',
|
||||
$autofocus ? 'autofocus' : '',
|
||||
!empty($minLength) ? 'data-min-length="' . $minLength . '"' : '',
|
||||
!empty($minIntegers) ? 'data-min-integers="' . $minIntegers . '"' : '',
|
||||
!empty($minSymbols) ? 'data-min-symbols="' . $minSymbols . '"' : '',
|
||||
!empty($minUppercase) ? 'data-min-uppercase="' . $minUppercase . '"' : '',
|
||||
!empty($minLowercase) ? 'data-min-lowercase="' . $minLowercase . '"' : '',
|
||||
!empty($forcePassword) ? 'data-min-force="' . $forcePassword . '"' : '',
|
||||
'data-bs-input',
|
||||
$dataAttribute,
|
||||
];
|
||||
|
||||
if ($rules) {
|
||||
$requirements = [];
|
||||
|
||||
if ($minLength) {
|
||||
$requirements[] = Text::sprintf('JFIELD_PASSWORD_RULES_CHARACTERS', $minLength);
|
||||
}
|
||||
|
||||
if ($minIntegers) {
|
||||
$requirements[] = Text::sprintf('JFIELD_PASSWORD_RULES_DIGITS', $minIntegers);
|
||||
}
|
||||
|
||||
if ($minSymbols) {
|
||||
$requirements[] = Text::sprintf('JFIELD_PASSWORD_RULES_SYMBOLS', $minSymbols);
|
||||
}
|
||||
|
||||
if ($minUppercase) {
|
||||
$requirements[] = Text::sprintf('JFIELD_PASSWORD_RULES_UPPERCASE', $minUppercase);
|
||||
}
|
||||
|
||||
if ($minLowercase) {
|
||||
$requirements[] = Text::sprintf('JFIELD_PASSWORD_RULES_LOWERCASE', $minLowercase);
|
||||
}
|
||||
}
|
||||
?>
|
||||
<?php if ($rules) : ?>
|
||||
<div id="<?php echo $name . '-rules'; ?>" class="small text-muted">
|
||||
<?php echo Text::sprintf('JFIELD_PASSWORD_RULES_MINIMUM_REQUIREMENTS', implode(', ', $requirements)); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<div class="password-group">
|
||||
<div class="form-group mb-0">
|
||||
<input
|
||||
type="password"
|
||||
name="<?php echo $name; ?>"
|
||||
id="<?php echo $id; ?>"
|
||||
value="<?php echo htmlspecialchars($value, ENT_COMPAT, 'UTF-8'); ?>"
|
||||
<?php echo implode(' ', $attributes); ?>>
|
||||
<?php if (!$lock) : ?>
|
||||
<span class="password-icon" aria-hidden="true">
|
||||
<svg class="password-icon-visible icon icon-sm"><use href="<?= $baseImagePath ?>sprites.svg#it-password-visible"></use></svg>
|
||||
<svg class="password-icon-invisible icon icon-sm d-none"><use href="<?= $baseImagePath ?>sprites.svg#it-password-invisible"></use></svg>
|
||||
</span>
|
||||
<span class="visually-hidden"><?php echo Text::_('JSHOWPASSWORD'); ?></span>
|
||||
<?php else : ?>
|
||||
<button type="button" id="<?php echo $id; ?>_lock" class="btn btn-info input-password-modify locked">
|
||||
<?php echo Text::_('JMODIFY'); ?>
|
||||
</button>
|
||||
<?php endif; ?>
|
||||
<!--aria-labelledby="infoPassword"-->
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@ -0,0 +1,127 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2018 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var string $autocomplete Autocomplete attribute for the field.
|
||||
* @var boolean $autofocus Is autofocus enabled?
|
||||
* @var string $class Classes for the input.
|
||||
* @var string $description Description of the field.
|
||||
* @var boolean $disabled Is this field disabled?
|
||||
* @var string $group Group the field belongs to. <fields> section in form XML.
|
||||
* @var boolean $hidden Is this field hidden in the form?
|
||||
* @var string $hint Placeholder for the field.
|
||||
* @var string $id DOM id of the field.
|
||||
* @var string $label Label of the field.
|
||||
* @var string $labelclass Classes to apply to the label.
|
||||
* @var boolean $multiple Does this field support multiple values?
|
||||
* @var string $name Name of the input field.
|
||||
* @var string $onchange Onchange attribute for the field.
|
||||
* @var string $onclick Onclick attribute for the field.
|
||||
* @var string $pattern Pattern (Reg Ex) of value of the form field.
|
||||
* @var boolean $readonly Is this field read only?
|
||||
* @var boolean $repeat Allows extensions to duplicate elements.
|
||||
* @var boolean $required Is this field required?
|
||||
* @var integer $size Size attribute of the input.
|
||||
* @var boolean $spellcheck Spellcheck state for the form field.
|
||||
* @var string $validate Validation rules to apply.
|
||||
* @var string $value Value attribute of the field.
|
||||
* @var array $options Options available for this field.
|
||||
* @var string $dataAttribute Miscellaneous data attributes preprocessed for HTML output
|
||||
* @var array $dataAttributes Miscellaneous data attributes for eg, data-*.
|
||||
*/
|
||||
|
||||
$alt = preg_replace('/[^a-zA-Z0-9_\-]/', '_', $name);
|
||||
$isBtnGroup = strpos(trim($class), 'btn-group') !== false;
|
||||
$isBtnYesNo = strpos(trim($class), 'btn-group-yesno') !== false;
|
||||
$classToggle = $isBtnGroup ? 'btn-check' : 'form-check-input';
|
||||
$btnClass = $isBtnGroup ? 'btn btn-outline-secondary' : 'form-check-label';
|
||||
$blockStart = $isBtnGroup ? '' : '<div class="form-check">';
|
||||
$blockEnd = $isBtnGroup ? '' : '</div>';
|
||||
|
||||
// Add the attributes of the fieldset in an array
|
||||
$containerClass = trim($class . ' radio' . ($readonly || $disabled ? ' disabled' : '') . ($readonly ? ' readonly' : ''));
|
||||
|
||||
$attribs = ['id="' . $id . '"'];
|
||||
|
||||
if (!empty($disabled)) {
|
||||
$attribs[] = 'disabled';
|
||||
}
|
||||
|
||||
if (!empty($autofocus)) {
|
||||
$attribs[] = 'autofocus';
|
||||
}
|
||||
|
||||
if ($required) {
|
||||
$attribs[] = 'class="required radio"';
|
||||
}
|
||||
|
||||
if ($readonly || $disabled) {
|
||||
$attribs[] = 'style="pointer-events: none"';
|
||||
}
|
||||
|
||||
if ($dataAttribute) {
|
||||
$attribs[] = $dataAttribute;
|
||||
}
|
||||
?>
|
||||
<fieldset <?php echo implode(' ', $attribs); ?>>
|
||||
<legend class="visually-hidden">
|
||||
<?php echo $label; ?>
|
||||
</legend>
|
||||
<div class="<?php echo $containerClass; ?>">
|
||||
<?php foreach ($options as $i => $option) : ?>
|
||||
<?php echo $blockStart; ?>
|
||||
<?php
|
||||
$disabled = !empty($option->disable) ? 'disabled' : '';
|
||||
$style = $disabled ? ' style="pointer-events: none"' : '';
|
||||
|
||||
// Initialize some option attributes.
|
||||
if ($isBtnYesNo) {
|
||||
// Set the button classes for the yes/no group
|
||||
switch ($option->value) {
|
||||
case '0':
|
||||
$btnClass = 'btn btn-outline-danger';
|
||||
break;
|
||||
case '1':
|
||||
$btnClass = 'btn btn-outline-success';
|
||||
break;
|
||||
default:
|
||||
$btnClass = 'btn btn-outline-secondary';
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
$optionClass = !empty($option->class) ? $option->class : $btnClass;
|
||||
$optionClass = trim($optionClass . ' ' . $disabled);
|
||||
$checked = ((string) $option->value === $value) ? 'checked="checked"' : '';
|
||||
|
||||
// Initialize some JavaScript option attributes.
|
||||
$onclick = !empty($option->onclick) ? 'onclick="' . $option->onclick . '"' : '';
|
||||
$onchange = !empty($option->onchange) ? 'onchange="' . $option->onchange . '"' : '';
|
||||
$oid = $id . $i;
|
||||
$ovalue = htmlspecialchars($option->value, ENT_COMPAT, 'UTF-8');
|
||||
$attributes = array_filter([$checked, $disabled, ltrim($style), $onchange, $onclick]);
|
||||
?>
|
||||
<?php if ($required) : ?>
|
||||
<?php $attributes[] = 'required'; ?>
|
||||
<?php endif; ?>
|
||||
<input class="<?php echo $classToggle; ?>" type="radio" id="<?php echo $oid; ?>" name="<?php echo $name; ?>" value="<?php echo $ovalue; ?>" <?php echo implode(' ', $attributes); ?>>
|
||||
<label for="<?php echo $oid; ?>" class="<?php echo trim($optionClass); ?>"<?php echo $style; ?>>
|
||||
<?php echo $option->text; ?>
|
||||
</label>
|
||||
<?php echo $blockEnd; ?>
|
||||
<?php endforeach; ?>
|
||||
</div>
|
||||
</fieldset>
|
||||
@ -0,0 +1,93 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2018 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Factory;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var string $autocomplete Autocomplete attribute for the field.
|
||||
* @var boolean $autofocus Is autofocus enabled?
|
||||
* @var string $class Classes for the input.
|
||||
* @var string $description Description of the field.
|
||||
* @var boolean $disabled Is this field disabled?
|
||||
* @var string $group Group the field belongs to. <fields> section in form XML.
|
||||
* @var boolean $hidden Is this field hidden in the form?
|
||||
* @var string $hint Placeholder for the field.
|
||||
* @var string $id DOM id of the field.
|
||||
* @var string $label Label of the field.
|
||||
* @var string $labelclass Classes to apply to the label.
|
||||
* @var boolean $multiple Does this field support multiple values?
|
||||
* @var string $name Name of the input field.
|
||||
* @var string $onchange Onchange attribute for the field.
|
||||
* @var string $onclick Onclick attribute for the field.
|
||||
* @var string $pattern Pattern (Reg Ex) of value of the form field.
|
||||
* @var boolean $readonly Is this field read only?
|
||||
* @var boolean $repeat Allows extensions to duplicate elements.
|
||||
* @var boolean $required Is this field required?
|
||||
* @var integer $size Size attribute of the input.
|
||||
* @var boolean $spellcheck Spellcheck state for the form field.
|
||||
* @var string $validate Validation rules to apply.
|
||||
* @var string $value Value attribute of the field.
|
||||
* @var array $options Options available for this field.
|
||||
* @var string $dataAttribute Miscellaneous data attributes preprocessed for HTML output
|
||||
* @var array $dataAttributes Miscellaneous data attributes for eg, data-*.
|
||||
*/
|
||||
|
||||
// If there are no options don't render anything
|
||||
if (empty($options)) {
|
||||
return '';
|
||||
}
|
||||
|
||||
// Load the css files
|
||||
Factory::getApplication()->getDocument()->getWebAssetManager()->useStyle('switcher');
|
||||
|
||||
/**
|
||||
* The format of the input tag to be filled in using sprintf.
|
||||
* %1 - id
|
||||
* %2 - name
|
||||
* %3 - value
|
||||
* %4 = any other attributes
|
||||
*/
|
||||
$input = '<input type="radio" id="%1$s" name="%2$s" value="%3$s" %4$s>';
|
||||
|
||||
$attr = 'id="' . $id . '"';
|
||||
$attr .= $onchange ? ' onchange="' . $onchange . '"' : '';
|
||||
$attr .= $dataAttribute;
|
||||
|
||||
?>
|
||||
<fieldset <?php echo $attr; ?>>
|
||||
<legend class="visually-hidden">
|
||||
<?php echo $label; ?>
|
||||
</legend>
|
||||
<div class="switcher<?php echo ($readonly || $disabled ? ' disabled' : ''); ?>">
|
||||
<?php foreach ($options as $i => $option) : ?>
|
||||
<?php
|
||||
// False value casting as string returns an empty string so assign it 0
|
||||
if (empty($value) && $option->value == '0') {
|
||||
$value = '0';
|
||||
}
|
||||
|
||||
// Initialize some option attributes.
|
||||
$optionValue = (string) $option->value;
|
||||
$optionId = $id . $i;
|
||||
$attributes = $optionValue == $value ? 'checked class="active ' . $class . '"' : ($class ? 'class="' . $class . '"' : '');
|
||||
$attributes .= $optionValue != $value && $readonly || $disabled ? ' disabled' : '';
|
||||
?>
|
||||
<?php echo sprintf($input, $optionId, $name, $this->escape($optionValue), $attributes); ?>
|
||||
<?php echo '<label for="' . $optionId . '">' . $option->text . '</label>'; ?>
|
||||
<?php endforeach; ?>
|
||||
<span class="toggle-outside"><span class="toggle-inside"></span></span>
|
||||
</div>
|
||||
</fieldset>
|
||||
@ -0,0 +1,90 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var string $autocomplete Autocomplete attribute for the field.
|
||||
* @var boolean $autofocus Is autofocus enabled?
|
||||
* @var string $class Classes for the input.
|
||||
* @var string $description Description of the field.
|
||||
* @var boolean $disabled Is this field disabled?
|
||||
* @var string $group Group the field belongs to. <fields> section in form XML.
|
||||
* @var boolean $hidden Is this field hidden in the form?
|
||||
* @var string $hint Placeholder for the field.
|
||||
* @var string $id DOM id of the field.
|
||||
* @var string $label Label of the field.
|
||||
* @var string $labelclass Classes to apply to the label.
|
||||
* @var boolean $multiple Does this field support multiple values?
|
||||
* @var string $name Name of the input field.
|
||||
* @var string $onchange Onchange attribute for the field.
|
||||
* @var string $onclick Onclick attribute for the field.
|
||||
* @var string $pattern Pattern (Reg Ex) of value of the form field.
|
||||
* @var boolean $readonly Is this field read only?
|
||||
* @var boolean $repeat Allows extensions to duplicate elements.
|
||||
* @var boolean $required Is this field required?
|
||||
* @var integer $size Size attribute of the input.
|
||||
* @var boolean $spellcheck Spellcheck state for the form field.
|
||||
* @var string $validate Validation rules to apply.
|
||||
* @var string $value Value attribute of the field.
|
||||
* @var array $options Options available for this field.
|
||||
* @var string $dataAttribute Miscellaneous data attributes preprocessed for HTML output
|
||||
* @var array $dataAttributes Miscellaneous data attribute for eg, data-*.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The format of the input tag to be filled in using sprintf.
|
||||
* %1 - id
|
||||
* %2 - name
|
||||
* %3 - value
|
||||
* %4 = any other attributes
|
||||
*/
|
||||
$format = '<input type="radio" id="%1$s" name="%2$s" value="%3$s" %4$s>';
|
||||
$alt = preg_replace('/[^a-zA-Z0-9_\-]/', '_', $name);
|
||||
?>
|
||||
<fieldset id="<?php echo $id; ?>" class="<?php echo trim($class . ' radio'); ?>"
|
||||
<?php echo $disabled ? 'disabled' : ''; ?>
|
||||
<?php echo $required ? 'required' : ''; ?>
|
||||
<?php echo $autofocus ? 'autofocus' : ''; ?>
|
||||
<?php echo $dataAttribute; ?>>
|
||||
|
||||
<?php if (!empty($options)) : ?>
|
||||
<?php foreach ($options as $i => $option) : ?>
|
||||
<?php
|
||||
// Initialize some option attributes.
|
||||
$checked = ((string) $option->value === $value) ? 'checked="checked"' : '';
|
||||
$optionClass = !empty($option->class) ? 'class="' . $option->class . '"' : '';
|
||||
$disabled = !empty($option->disable) || ($disabled && !$checked) ? 'disabled' : '';
|
||||
|
||||
// Initialize some JavaScript option attributes.
|
||||
$onclick = !empty($option->onclick) ? 'onclick="' . $option->onclick . '"' : '';
|
||||
$onchange = !empty($option->onchange) ? 'onchange="' . $option->onchange . '"' : '';
|
||||
$oid = $id . $i;
|
||||
$ovalue = htmlspecialchars($option->value, ENT_COMPAT, 'UTF-8');
|
||||
$attributes = array_filter([$checked, $optionClass, $disabled, $onchange, $onclick]);
|
||||
?>
|
||||
<?php if ($required) : ?>
|
||||
<?php $attributes[] = 'required'; ?>
|
||||
<?php endif; ?>
|
||||
<div class="radio mb-0">
|
||||
<label for="<?php echo $oid; ?>" <?php echo $optionClass; ?>>
|
||||
<?php echo sprintf($format, $oid, $name, $ovalue, implode(' ', $attributes)); ?>
|
||||
<?php echo Text::alt($option->text, $alt); ?>
|
||||
</label>
|
||||
</div>
|
||||
<?php endforeach; ?>
|
||||
<?php endif; ?>
|
||||
</fieldset>
|
||||
@ -0,0 +1,72 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var string $autocomplete Autocomplete attribute for the field.
|
||||
* @var boolean $autofocus Is autofocus enabled?
|
||||
* @var string $class Classes for the input.
|
||||
* @var string $description Description of the field.
|
||||
* @var boolean $disabled Is this field disabled?
|
||||
* @var string $group Group the field belongs to. <fields> section in form XML.
|
||||
* @var boolean $hidden Is this field hidden in the form?
|
||||
* @var string $hint Placeholder for the field.
|
||||
* @var string $id DOM id of the field.
|
||||
* @var string $label Label of the field.
|
||||
* @var string $labelclass Classes to apply to the label.
|
||||
* @var boolean $multiple Does this field support multiple values?
|
||||
* @var string $name Name of the input field.
|
||||
* @var string $onchange Onchange attribute for the field.
|
||||
* @var string $onclick Onclick attribute for the field.
|
||||
* @var string $pattern Pattern (Reg Ex) of value of the form field.
|
||||
* @var boolean $readonly Is this field read only?
|
||||
* @var boolean $repeat Allows extensions to duplicate elements.
|
||||
* @var boolean $required Is this field required?
|
||||
* @var integer $size Size attribute of the input.
|
||||
* @var boolean $spellcheck Spellcheck state for the form field.
|
||||
* @var string $validate Validation rules to apply.
|
||||
* @var string $value Value attribute of the field.
|
||||
* @var array $checkedOptions Options that will be set as checked.
|
||||
* @var boolean $hasValue Has this field a value assigned?
|
||||
* @var array $options Options available for this field.
|
||||
* @var array $inputType Options available for this field.
|
||||
* @var string $accept File types that are accepted.
|
||||
* @var string $dataAttribute Miscellaneous data attributes preprocessed for HTML output
|
||||
* @var array $dataAttributes Miscellaneous data attribute for eg, data-*.
|
||||
*/
|
||||
|
||||
// Initialize some field attributes.
|
||||
$attributes = [
|
||||
$class ? 'class="form-range ' . $class . '"' : 'class="form-range"',
|
||||
!empty($description) ? 'aria-describedby="' . ($id ?: $name) . '-desc"' : '',
|
||||
$disabled ? 'disabled' : '',
|
||||
$readonly ? 'readonly' : '',
|
||||
!empty($onchange) ? 'onchange="' . $onchange . '"' : '',
|
||||
!empty($max) ? 'max="' . $max . '"' : '',
|
||||
!empty($step) ? 'step="' . $step . '"' : '',
|
||||
!empty($min) ? 'min="' . $min . '"' : '',
|
||||
$autofocus ? 'autofocus' : '',
|
||||
$dataAttribute,
|
||||
];
|
||||
|
||||
$value = is_numeric($value) ? (float) $value : $min;
|
||||
|
||||
?>
|
||||
<input
|
||||
type="range"
|
||||
name="<?php echo $name; ?>"
|
||||
id="<?php echo $id; ?>"
|
||||
value="<?php echo htmlspecialchars($value, ENT_COMPAT, 'UTF-8'); ?>"
|
||||
<?php echo implode(' ', $attributes); ?>>
|
||||
@ -0,0 +1,234 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2018 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Access\Access;
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\HTML\HTMLHelper;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\Layout\LayoutHelper;
|
||||
use Joomla\CMS\Router\Route;
|
||||
use Joomla\CMS\Session\Session;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
// Get some system objects.
|
||||
$document = Factory::getDocument();
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var string $autocomplete Autocomplete attribute for the field.
|
||||
* @var boolean $autofocus Is autofocus enabled?
|
||||
* @var string $class Classes for the input.
|
||||
* @var string $description Description of the field.
|
||||
* @var boolean $disabled Is this field disabled?
|
||||
* @var string $group Group the field belongs to. <fields> section in form XML.
|
||||
* @var boolean $hidden Is this field hidden in the form?
|
||||
* @var string $hint Placeholder for the field.
|
||||
* @var string $id DOM id of the field.
|
||||
* @var string $label Label of the field.
|
||||
* @var string $labelclass Classes to apply to the label.
|
||||
* @var boolean $multiple Does this field support multiple values?
|
||||
* @var string $name Name of the input field.
|
||||
* @var array $options Options available for this field.
|
||||
* @var array $groups Available user groups.
|
||||
* @var array $actions Actions for the asset.
|
||||
* @var integer $assetId Access parameters.
|
||||
* @var string $component The component.
|
||||
* @var string $section The section.
|
||||
* @var boolean $isGlobalConfig Current view is global config?
|
||||
* @var boolean $newItem The new item.
|
||||
* @var object $assetRules Rules for asset.
|
||||
* @var integer $parentAssetId To calculate permissions.
|
||||
* @var string $dataAttribute Miscellaneous data attributes preprocessed for HTML output
|
||||
* @var array $dataAttributes Miscellaneous data attributes for eg, data-*.
|
||||
*/
|
||||
|
||||
// Add Javascript for permission change
|
||||
HTMLHelper::_('form.csrf');
|
||||
Factory::getDocument()->getWebAssetManager()
|
||||
->useStyle('webcomponent.field-permissions')
|
||||
->useScript('webcomponent.field-permissions')
|
||||
->useStyle('webcomponent.joomla-tab')
|
||||
->useScript('webcomponent.joomla-tab');
|
||||
|
||||
// Load JavaScript message titles
|
||||
Text::script('ERROR');
|
||||
Text::script('WARNING');
|
||||
Text::script('NOTICE');
|
||||
Text::script('MESSAGE');
|
||||
|
||||
// Add strings for JavaScript error translations.
|
||||
Text::script('JLIB_JS_AJAX_ERROR_CONNECTION_ABORT');
|
||||
Text::script('JLIB_JS_AJAX_ERROR_NO_CONTENT');
|
||||
Text::script('JLIB_JS_AJAX_ERROR_OTHER');
|
||||
Text::script('JLIB_JS_AJAX_ERROR_PARSE');
|
||||
Text::script('JLIB_JS_AJAX_ERROR_TIMEOUT');
|
||||
|
||||
// Ajax request data.
|
||||
$ajaxUri = Route::_('index.php?option=com_config&task=application.store&format=json&' . Session::getFormToken() . '=1');
|
||||
?>
|
||||
|
||||
<?php // Description ?>
|
||||
<details>
|
||||
<summary class="rule-notes">
|
||||
<?php echo Text::_('JLIB_RULES_SETTINGS_DESC'); ?>
|
||||
</summary>
|
||||
<div class="rule-notes">
|
||||
<?php
|
||||
if ($section === 'component' || !$section) {
|
||||
echo Text::alt('JLIB_RULES_SETTING_NOTES', $component);
|
||||
} else {
|
||||
echo Text::alt('JLIB_RULES_SETTING_NOTES_ITEM', $component . '_' . $section);
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
</details>
|
||||
<?php // Begin tabs ?>
|
||||
<joomla-field-permissions class="row mb-2" data-uri="<?php echo $ajaxUri; ?>" <?php echo $dataAttribute; ?>>
|
||||
<joomla-tab orientation="vertical" id="permissions-sliders" recall breakpoint="728">
|
||||
<?php // Initial Active Pane ?>
|
||||
<?php foreach ($groups as $group) : ?>
|
||||
<?php $active = (int) $group->value === 1 ? ' active' : ''; ?>
|
||||
<joomla-tab-element class="tab-pane" <?php echo $active; ?> name="<?php echo htmlentities(LayoutHelper::render('joomla.html.treeprefix', ['level' => $group->level + 1]), ENT_COMPAT, 'utf-8') . $group->text; ?>" id="permission-<?php echo $group->value; ?>">
|
||||
<table class="table respTable">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="actions w-30" id="actions-th<?php echo $group->value; ?>">
|
||||
<span class="acl-action"><?php echo Text::_('JLIB_RULES_ACTION'); ?></span>
|
||||
</th>
|
||||
|
||||
<th class="settings w-40" id="settings-th<?php echo $group->value; ?>">
|
||||
<span class="acl-action"><?php echo Text::_('JLIB_RULES_SELECT_SETTING'); ?></span>
|
||||
</th>
|
||||
|
||||
<th class="w-30" id="aclaction-th<?php echo $group->value; ?>">
|
||||
<span class="acl-action"><?php echo Text::_('JLIB_RULES_CALCULATED_SETTING'); ?></span>
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
||||
<?php // Check if this group has super user permissions ?>
|
||||
<?php $isSuperUserGroup = Access::checkGroup($group->value, 'core.admin'); ?>
|
||||
<?php foreach ($actions as $action) : ?>
|
||||
<tr>
|
||||
<td class="oddCol" data-label="<?php echo Text::_('JLIB_RULES_ACTION'); ?>" headers="actions-th<?php echo $group->value; ?>">
|
||||
<label for="<?php echo $id; ?>_<?php echo $action->name; ?>_<?php echo $group->value; ?>">
|
||||
<?php echo Text::_($action->title); ?>
|
||||
</label>
|
||||
<?php if (!empty($action->description)) : ?>
|
||||
<div role="tooltip" id="tip-<?php echo $id; ?>">
|
||||
<?php echo htmlspecialchars(Text::_($action->description)); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
<td data-label="<?php echo Text::_('JLIB_RULES_SELECT_SETTING'); ?>" headers="settings-th<?php echo $group->value; ?>">
|
||||
<div class="d-flex align-items-center">
|
||||
<select data-onchange-task="permissions.apply"
|
||||
class="form-select novalidate"
|
||||
name="<?php echo $name; ?>[<?php echo $action->name; ?>][<?php echo $group->value; ?>]"
|
||||
id="<?php echo $id; ?>_<?php echo $action->name; ?>_<?php echo $group->value; ?>" >
|
||||
<?php
|
||||
/**
|
||||
* Possible values:
|
||||
* null = not set means inherited
|
||||
* false = denied
|
||||
* true = allowed
|
||||
*/
|
||||
|
||||
// Get the actual setting for the action for this group. ?>
|
||||
<?php $assetRule = $newItem === false ? $assetRules->allow($action->name, $group->value) : null;?>
|
||||
|
||||
<?php // Build the dropdowns for the permissions sliders
|
||||
// The parent group has "Not Set", all children can rightly "Inherit" from that.?>
|
||||
<option value="" <?php echo ($assetRule === null ? ' selected="selected"' : ''); ?>>
|
||||
<?php echo Text::_(empty($group->parent_id) && $isGlobalConfig ? 'JLIB_RULES_NOT_SET' : 'JLIB_RULES_INHERITED'); ?></option>
|
||||
<option value="1" <?php echo ($assetRule === true ? ' selected="selected"' : ''); ?>>
|
||||
<?php echo Text::_('JLIB_RULES_ALLOWED'); ?></option>
|
||||
<option value="0" <?php echo ($assetRule === false ? ' selected="selected"' : ''); ?>>
|
||||
<?php echo Text::_('JLIB_RULES_DENIED'); ?></option>
|
||||
|
||||
</select> 
|
||||
<span id="icon_<?php echo $id; ?>_<?php echo $action->name; ?>_<?php echo $group->value; ?>"></span>
|
||||
</div>
|
||||
</td>
|
||||
|
||||
<td data-label="<?php echo Text::_('JLIB_RULES_CALCULATED_SETTING'); ?>" headers="aclaction-th<?php echo $group->value; ?>">
|
||||
<?php $result = []; ?>
|
||||
<?php // Get the group, group parent id, and group global config recursive calculated permission for the chosen action. ?>
|
||||
<?php $inheritedGroupRule = Access::checkGroup((int) $group->value, $action->name, $assetId);
|
||||
$inheritedGroupParentAssetRule = !empty($parentAssetId) ? Access::checkGroup($group->value, $action->name, $parentAssetId) : null;
|
||||
$inheritedParentGroupRule = !empty($group->parent_id) ? Access::checkGroup($group->parent_id, $action->name, $assetId) : null;
|
||||
|
||||
// Current group is a Super User group, so calculated setting is "Allowed (Super User)".
|
||||
if ($isSuperUserGroup) {
|
||||
$result['class'] = 'badge bg-success';
|
||||
$result['text'] = '<span class="icon-lock icon-white" aria-hidden="true"></span>' . Text::_('JLIB_RULES_ALLOWED_ADMIN');
|
||||
} else {
|
||||
// First get the real recursive calculated setting and add (Inherited) to it.
|
||||
|
||||
// If recursive calculated setting is "Denied" or null. Calculated permission is "Not Allowed (Inherited)".
|
||||
if ($inheritedGroupRule === null || $inheritedGroupRule === false) {
|
||||
$result['class'] = 'badge bg-danger';
|
||||
$result['text'] = Text::_('JLIB_RULES_NOT_ALLOWED_INHERITED');
|
||||
} else {
|
||||
// If recursive calculated setting is "Allowed". Calculated permission is "Allowed (Inherited)".
|
||||
$result['class'] = 'badge bg-success';
|
||||
$result['text'] = Text::_('JLIB_RULES_ALLOWED_INHERITED');
|
||||
}
|
||||
|
||||
// Second part: Overwrite the calculated permissions labels if there is an explicit permission in the current group.
|
||||
|
||||
/**
|
||||
* @todo: incorrect info
|
||||
* If a component has a permission that doesn't exists in global config (ex: frontend editing in com_modules) by default
|
||||
* we get "Not Allowed (Inherited)" when we should get "Not Allowed (Default)".
|
||||
*/
|
||||
|
||||
// If there is an explicit permission "Not Allowed". Calculated permission is "Not Allowed".
|
||||
if ($assetRule === false) {
|
||||
$result['class'] = 'badge bg-danger';
|
||||
$result['text'] = Text::_('JLIB_RULES_NOT_ALLOWED');
|
||||
} elseif ($assetRule === true) {
|
||||
// If there is an explicit permission is "Allowed". Calculated permission is "Allowed".
|
||||
$result['class'] = 'badge bg-success';
|
||||
$result['text'] = Text::_('JLIB_RULES_ALLOWED');
|
||||
}
|
||||
|
||||
// Third part: Overwrite the calculated permissions labels for special cases.
|
||||
|
||||
// Global configuration with "Not Set" permission. Calculated permission is "Not Allowed (Default)".
|
||||
if (empty($group->parent_id) && $isGlobalConfig === true && $assetRule === null) {
|
||||
$result['class'] = 'badge bg-danger';
|
||||
$result['text'] = Text::_('JLIB_RULES_NOT_ALLOWED_DEFAULT');
|
||||
} elseif ($inheritedGroupParentAssetRule === false || $inheritedParentGroupRule === false) {
|
||||
/**
|
||||
* Component/Item with explicit "Denied" permission at parent Asset (Category, Component or Global config) configuration.
|
||||
* Or some parent group has an explicit "Denied".
|
||||
* Calculated permission is "Not Allowed (Locked)".
|
||||
*/
|
||||
$result['class'] = 'badge bg-danger';
|
||||
$result['text'] = '<span class="icon-lock icon-white" aria-hidden="true"></span>' . Text::_('JLIB_RULES_NOT_ALLOWED_LOCKED');
|
||||
}
|
||||
}
|
||||
?>
|
||||
<output><span class="<?php echo $result['class']; ?>"><?php echo $result['text']; ?></span></output>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
</tbody>
|
||||
</table>
|
||||
</joomla-tab-element>
|
||||
<?php endforeach; ?>
|
||||
</joomla-tab>
|
||||
</joomla-field-permissions>
|
||||
@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Form\Form;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var Form $tmpl The Empty form for template
|
||||
* @var array $forms Array of JForm instances for render the rows
|
||||
* @var bool $multiple The multiple state for the form field
|
||||
* @var int $min Count of minimum repeating in multiple mode
|
||||
* @var int $max Count of maximum repeating in multiple mode
|
||||
* @var string $name Name of the input field.
|
||||
* @var string $fieldname The field name
|
||||
* @var string $fieldId The field ID
|
||||
* @var string $control The forms control
|
||||
* @var string $label The field label
|
||||
* @var string $description The field description
|
||||
* @var array $buttons Array of the buttons that will be rendered
|
||||
* @var bool $groupByFieldset Whether group the subform fields by it`s fieldset
|
||||
*/
|
||||
$form = $forms[0];
|
||||
?>
|
||||
|
||||
<div class="subform-wrapper">
|
||||
<?php foreach ($form->getGroup('') as $field) : ?>
|
||||
<?php echo $field->renderField(); ?>
|
||||
<?php endforeach; ?>
|
||||
</div>
|
||||
@ -0,0 +1,123 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\Form\Form;
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var Form $tmpl The Empty form for template
|
||||
* @var array $forms Array of JForm instances for render the rows
|
||||
* @var bool $multiple The multiple state for the form field
|
||||
* @var int $min Count of minimum repeating in multiple mode
|
||||
* @var int $max Count of maximum repeating in multiple mode
|
||||
* @var string $name Name of the input field.
|
||||
* @var string $fieldname The field name
|
||||
* @var string $fieldId The field ID
|
||||
* @var string $control The forms control
|
||||
* @var string $label The field label
|
||||
* @var string $description The field description
|
||||
* @var string $class Classes for the container
|
||||
* @var array $buttons Array of the buttons that will be rendered
|
||||
* @var bool $groupByFieldset Whether group the subform fields by it`s fieldset
|
||||
*/
|
||||
if ($multiple) {
|
||||
// Add script
|
||||
Factory::getApplication()
|
||||
->getDocument()
|
||||
->getWebAssetManager()
|
||||
->useScript('webcomponent.field-subform');
|
||||
}
|
||||
|
||||
$class = $class ? ' ' . $class : '';
|
||||
|
||||
// Build heading
|
||||
$table_head = '';
|
||||
|
||||
if (!empty($groupByFieldset)) {
|
||||
foreach ($tmpl->getFieldsets() as $k => $fieldset) {
|
||||
$table_head .= '<th scope="col">' . Text::_($fieldset->label);
|
||||
|
||||
if ($fieldset->description) {
|
||||
$table_head .= '<span class="icon-info-circle" aria-hidden="true" tabindex="0"></span><div role="tooltip" id="tip-th-' . $fieldId . '-' . $k . '">' . Text::_($fieldset->description) . '</div>';
|
||||
}
|
||||
|
||||
$table_head .= '</th>';
|
||||
}
|
||||
|
||||
$sublayout = 'section-byfieldsets';
|
||||
} else {
|
||||
foreach ($tmpl->getGroup('') as $field) {
|
||||
$table_head .= '<th scope="col" style="width:45%">' . strip_tags($field->label);
|
||||
|
||||
if ($field->description) {
|
||||
$table_head .= '<span class="icon-info-circle" aria-hidden="true" tabindex="0"></span><div role="tooltip" id="tip-' . $field->id . '">' . Text::_($field->description) . '</div>';
|
||||
}
|
||||
|
||||
$table_head .= '</th>';
|
||||
}
|
||||
|
||||
$sublayout = 'section';
|
||||
|
||||
// Label will not be shown for sections layout, so reset the margin left
|
||||
Factory::getApplication()
|
||||
->getDocument()
|
||||
->addStyleDeclaration('.subform-table-sublayout-section .controls { margin-left: 0px }');
|
||||
}
|
||||
?>
|
||||
|
||||
<div class="subform-repeatable-wrapper subform-table-layout subform-table-sublayout-<?php echo $sublayout; ?>">
|
||||
<joomla-field-subform class="subform-repeatable<?php echo $class; ?>" name="<?php echo $name; ?>"
|
||||
button-add=".group-add" button-remove=".group-remove" button-move="<?php echo empty($buttons['move']) ? '' : '.group-move' ?>"
|
||||
repeatable-element=".subform-repeatable-group"
|
||||
rows-container="tbody.subform-repeatable-container" minimum="<?php echo $min; ?>" maximum="<?php echo $max; ?>">
|
||||
<div class="table-responsive">
|
||||
<table class="table" id="subfieldList_<?php echo $fieldId; ?>">
|
||||
<caption class="visually-hidden">
|
||||
<?php echo Text::_('JGLOBAL_REPEATABLE_FIELDS_TABLE_CAPTION'); ?>
|
||||
</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<?php echo $table_head; ?>
|
||||
<?php if (!empty($buttons)) : ?>
|
||||
<td style="width:8%;">
|
||||
<?php if (!empty($buttons['add'])) : ?>
|
||||
<div class="btn-group">
|
||||
<button type="button" class="group-add btn btn-sm btn-success" aria-label="<?php echo Text::_('JGLOBAL_FIELD_ADD'); ?>">
|
||||
<span class="icon-plus" aria-hidden="true"></span>
|
||||
</button>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
<?php endif; ?>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="subform-repeatable-container">
|
||||
<?php
|
||||
foreach ($forms as $k => $form) :
|
||||
echo $this->sublayout($sublayout, ['form' => $form, 'basegroup' => $fieldname, 'group' => $fieldname . $k, 'buttons' => $buttons]);
|
||||
endforeach;
|
||||
?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<?php if ($multiple) : ?>
|
||||
<template class="subform-repeatable-template-section hidden">
|
||||
<?php echo trim($this->sublayout($sublayout, ['form' => $tmpl, 'basegroup' => $fieldname, 'group' => $fieldname . 'X', 'buttons' => $buttons])); ?>
|
||||
</template>
|
||||
<?php endif; ?>
|
||||
</joomla-field-subform>
|
||||
</div>
|
||||
@ -0,0 +1,59 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Form\Form;
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var Form $form The form instance for render the section
|
||||
* @var string $basegroup The base group name
|
||||
* @var string $group Current group name
|
||||
* @var array $buttons Array of the buttons that will be rendered
|
||||
*/
|
||||
?>
|
||||
|
||||
<tr class="subform-repeatable-group" data-base-name="<?php echo $basegroup; ?>" data-group="<?php echo $group; ?>">
|
||||
<?php foreach ($form->getFieldsets() as $fieldset) : ?>
|
||||
<td class="<?php if (!empty($fieldset->class)) {
|
||||
echo $fieldset->class;
|
||||
} ?>">
|
||||
<?php foreach ($form->getFieldset($fieldset->name) as $field) : ?>
|
||||
<?php echo $field->renderField(); ?>
|
||||
<?php endforeach; ?>
|
||||
</td>
|
||||
<?php endforeach; ?>
|
||||
<?php if (!empty($buttons)) : ?>
|
||||
<td>
|
||||
<div class="btn-group">
|
||||
<?php if (!empty($buttons['add'])) : ?>
|
||||
<button type="button" class="group-add btn btn-sm btn-success" aria-label="<?php echo Text::_('JGLOBAL_FIELD_ADD'); ?>">
|
||||
<span class="icon-plus" aria-hidden="true"></span>
|
||||
</button>
|
||||
<?php endif; ?>
|
||||
<?php if (!empty($buttons['remove'])) : ?>
|
||||
<button type="button" class="group-remove btn btn-sm btn-danger" aria-label="<?php echo Text::_('JGLOBAL_FIELD_REMOVE'); ?>">
|
||||
<span class="icon-minus" aria-hidden="true"></span>
|
||||
</button>
|
||||
<?php endif; ?>
|
||||
<?php if (!empty($buttons['move'])) : ?>
|
||||
<button type="button" class="group-move btn btn-sm btn-primary" aria-label="<?php echo Text::_('JGLOBAL_FIELD_MOVE'); ?>">
|
||||
<span class="icon-arrows-alt" aria-hidden="true"></span>
|
||||
</button>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</td>
|
||||
<?php endif; ?>
|
||||
</tr>
|
||||
@ -0,0 +1,55 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Form\Form;
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var Form $form The form instance for render the section
|
||||
* @var string $basegroup The base group name
|
||||
* @var string $group Current group name
|
||||
* @var array $buttons Array of the buttons that will be rendered
|
||||
*/
|
||||
?>
|
||||
|
||||
<tr class="subform-repeatable-group" data-base-name="<?php echo $basegroup; ?>" data-group="<?php echo $group; ?>">
|
||||
<?php foreach ($form->getGroup('') as $field) : ?>
|
||||
<td data-column="<?php echo strip_tags($field->label); ?>">
|
||||
<?php echo $field->renderField(['hiddenLabel' => true, 'hiddenDescription' => true]); ?>
|
||||
</td>
|
||||
<?php endforeach; ?>
|
||||
<?php if (!empty($buttons)) : ?>
|
||||
<td>
|
||||
<div class="btn-group">
|
||||
<?php if (!empty($buttons['add'])) : ?>
|
||||
<button type="button" class="group-add btn btn-sm btn-success" aria-label="<?php echo Text::_('JGLOBAL_FIELD_ADD'); ?>">
|
||||
<span class="icon-plus" aria-hidden="true"></span>
|
||||
</button>
|
||||
<?php endif; ?>
|
||||
<?php if (!empty($buttons['remove'])) : ?>
|
||||
<button type="button" class="group-remove btn btn-sm btn-danger" aria-label="<?php echo Text::_('JGLOBAL_FIELD_REMOVE'); ?>">
|
||||
<span class="icon-minus" aria-hidden="true"></span>
|
||||
</button>
|
||||
<?php endif; ?>
|
||||
<?php if (!empty($buttons['move'])) : ?>
|
||||
<button type="button" class="group-move btn btn-sm btn-primary" aria-label="<?php echo Text::_('JGLOBAL_FIELD_MOVE'); ?>">
|
||||
<span class="icon-arrows-alt" aria-hidden="true"></span>
|
||||
</button>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</td>
|
||||
<?php endif; ?>
|
||||
</tr>
|
||||
@ -0,0 +1,74 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\Form\Form;
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var Form $tmpl The Empty form for template
|
||||
* @var array $forms Array of JForm instances for render the rows
|
||||
* @var bool $multiple The multiple state for the form field
|
||||
* @var int $min Count of minimum repeating in multiple mode
|
||||
* @var int $max Count of maximum repeating in multiple mode
|
||||
* @var string $name Name of the input field.
|
||||
* @var string $fieldname The field name
|
||||
* @var string $fieldId The field ID
|
||||
* @var string $control The forms control
|
||||
* @var string $label The field label
|
||||
* @var string $description The field description
|
||||
* @var string $class Classes for the container
|
||||
* @var array $buttons Array of the buttons that will be rendered
|
||||
* @var bool $groupByFieldset Whether group the subform fields by it`s fieldset
|
||||
*/
|
||||
if ($multiple) {
|
||||
// Add script
|
||||
Factory::getApplication()
|
||||
->getDocument()
|
||||
->getWebAssetManager()
|
||||
->useScript('webcomponent.field-subform');
|
||||
}
|
||||
|
||||
$class = $class ? ' ' . $class : '';
|
||||
|
||||
$sublayout = empty($groupByFieldset) ? 'section' : 'section-byfieldsets';
|
||||
?>
|
||||
|
||||
<div class="subform-repeatable-wrapper subform-layout">
|
||||
<joomla-field-subform class="subform-repeatable<?php echo $class; ?>" name="<?php echo $name; ?>"
|
||||
button-add=".group-add" button-remove=".group-remove" button-move="<?php echo empty($buttons['move']) ? '' : '.group-move' ?>"
|
||||
repeatable-element=".subform-repeatable-group" minimum="<?php echo $min; ?>" maximum="<?php echo $max; ?>">
|
||||
<?php if (!empty($buttons['add'])) : ?>
|
||||
<div class="btn-toolbar">
|
||||
<div class="btn-group">
|
||||
<button type="button" class="group-add btn btn-sm button btn-success" aria-label="<?php echo Text::_('JGLOBAL_FIELD_ADD'); ?>">
|
||||
<span class="icon-plus icon-white" aria-hidden="true"></span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php
|
||||
foreach ($forms as $k => $form) :
|
||||
echo $this->sublayout($sublayout, ['form' => $form, 'basegroup' => $fieldname, 'group' => $fieldname . $k, 'buttons' => $buttons]);
|
||||
endforeach;
|
||||
?>
|
||||
<?php if ($multiple) : ?>
|
||||
<template class="subform-repeatable-template-section hidden"><?php
|
||||
echo trim($this->sublayout($sublayout, ['form' => $tmpl, 'basegroup' => $fieldname, 'group' => $fieldname . 'X', 'buttons' => $buttons]));
|
||||
?></template>
|
||||
<?php endif; ?>
|
||||
</joomla-field-subform>
|
||||
</div>
|
||||
@ -0,0 +1,58 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Form\Form;
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var Form $form The form instance for render the section
|
||||
* @var string $basegroup The base group name
|
||||
* @var string $group Current group name
|
||||
* @var array $buttons Array of the buttons that will be rendered
|
||||
*/
|
||||
?>
|
||||
|
||||
<div class="subform-repeatable-group" data-base-name="<?php echo $basegroup; ?>" data-group="<?php echo $group; ?>">
|
||||
<?php if (!empty($buttons)) : ?>
|
||||
<div class="btn-toolbar text-end">
|
||||
<div class="btn-group">
|
||||
<?php if (!empty($buttons['add'])) :
|
||||
?><button type="button" class="group-add btn btn-sm btn-success" aria-label="<?php echo Text::_('JGLOBAL_FIELD_ADD'); ?>"><span class="icon-plus icon-white" aria-hidden="true"></span> </button><?php
|
||||
endif; ?>
|
||||
<?php if (!empty($buttons['remove'])) :
|
||||
?><button type="button" class="group-remove btn btn-sm btn-danger" aria-label="<?php echo Text::_('JGLOBAL_FIELD_REMOVE'); ?>"><span class="icon-minus icon-white" aria-hidden="true"></span> </button><?php
|
||||
endif; ?>
|
||||
<?php if (!empty($buttons['move'])) :
|
||||
?><button type="button" class="group-move btn btn-sm btn-primary" aria-label="<?php echo Text::_('JGLOBAL_FIELD_MOVE'); ?>"><span class="icon-arrows-alt icon-white" aria-hidden="true"></span> </button><?php
|
||||
endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<div class="row">
|
||||
<?php foreach ($form->getFieldsets() as $fieldset) : ?>
|
||||
<fieldset class="<?php if (!empty($fieldset->class)) {
|
||||
echo $fieldset->class;
|
||||
} ?>">
|
||||
<?php if (!empty($fieldset->label)) : ?>
|
||||
<legend><?php echo Text::_($fieldset->label); ?></legend>
|
||||
<?php endif; ?>
|
||||
<?php foreach ($form->getFieldset($fieldset->name) as $field) : ?>
|
||||
<?php echo $field->renderField(); ?>
|
||||
<?php endforeach; ?>
|
||||
</fieldset>
|
||||
<?php endforeach; ?>
|
||||
</div>
|
||||
</div>
|
||||
@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Layout
|
||||
*
|
||||
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use Joomla\CMS\Form\Form;
|
||||
use Joomla\CMS\Language\Text;
|
||||
|
||||
extract($displayData);
|
||||
|
||||
/**
|
||||
* Layout variables
|
||||
* -----------------
|
||||
* @var Form $form The form instance for render the section
|
||||
* @var string $basegroup The base group name
|
||||
* @var string $group Current group name
|
||||
* @var array $buttons Array of the buttons that will be rendered
|
||||
*/
|
||||
?>
|
||||
|
||||
<div class="subform-repeatable-group" data-base-name="<?php echo $basegroup; ?>" data-group="<?php echo $group; ?>">
|
||||
<?php if (!empty($buttons)) : ?>
|
||||
<div class="btn-toolbar text-end">
|
||||
<div class="btn-group">
|
||||
<?php if (!empty($buttons['add'])) :
|
||||
?><button type="button" class="group-add btn btn-sm btn-success" aria-label="<?php echo Text::_('JGLOBAL_FIELD_ADD'); ?>"><span class="icon-plus icon-white" aria-hidden="true"></span> </button><?php
|
||||
endif; ?>
|
||||
<?php if (!empty($buttons['remove'])) :
|
||||
?><button type="button" class="group-remove btn btn-sm btn-danger" aria-label="<?php echo Text::_('JGLOBAL_FIELD_REMOVE'); ?>"><span class="icon-minus icon-white" aria-hidden="true"></span> </button><?php
|
||||
endif; ?>
|
||||
<?php if (!empty($buttons['move'])) :
|
||||
?><button type="button" class="group-move btn btn-sm btn-primary" aria-label="<?php echo Text::_('JGLOBAL_FIELD_MOVE'); ?>"><span class="icon-arrows-alt icon-white" aria-hidden="true"></span> </button><?php
|
||||
endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php foreach ($form->getGroup('') as $field) : ?>
|
||||
<?php echo $field->renderField(); ?>
|
||||
<?php endforeach; ?>
|
||||
</div>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user