first commit

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

View File

@@ -0,0 +1,112 @@
<?php
/**
* @package ShackDefaultFiles
* @contact www.joomlashack.com, help@joomlashack.com
* @copyright 2018-2024 Joomlashack.com. All rights reserved
* @license https://www.gnu.org/licenses/gpl.html GNU/GPL
*
* This file is part of ShackDefaultFiles.
*
* ShackDefaultFiles is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* ShackDefaultFiles is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ShackDefaultFiles. If not, see <https://www.gnu.org/licenses/>.
*/
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
defined('_JEXEC') or die();
/**
* @var array $displayData
*/
$class = $displayData['class'];
$media = $displayData['media'];
$jslogo = $media . '/' . $displayData['jslogo'];
$jedurl = $displayData['jedurl'];
$showGoProAd = $displayData['showGoProAd'];
$goProUrl = $displayData['goProUrl'];
$fromInstaller = $displayData['fromInstaller'];
$footerCss = HTMLHelper::_('stylesheet', $media . '/field_customfooter.css', ['relative' => true, 'pathOnly' => true]);
$adminCss = HTMLHelper::_('stylesheet', $media . '/admin-default.css', ['relative' => true, 'pathOnly' => true]);
?>
<link href="<?php echo $footerCss; ?>" rel="stylesheet"/>
<link href="<?php echo $adminCss; ?>" rel="stylesheet"/>
<div class="<?php echo $class; ?>">
<div>
<?php
if ($showGoProAd) :
?>
<div class="gopro-ad">
<?php
echo HTMLHelper::_(
'link',
$goProUrl,
Text::_('SHACKDEFAULTFILES_GO_PRO'),
'class="gopto-btn" target="_blank"'
);
?>
</div>
<?php endif;
if ($jedurl) : ?>
<div class="joomlashack-jedlink">
<?php
echo Text::_('SHACKDEFAULTFILES_LIKE_THIS_EXTENSION');
echo '&nbsp;'
. HTMLHelper::_(
'link',
$jedurl,
Text::_('SHACKDEFAULTFILES_LEAVE_A_REVIEW_ON_JED'),
'target="_blank"'
);
echo '&nbsp;' . str_repeat("<i class=\"icon-star\"></i>", 5);
?>
</div>
<?php endif; ?>
<div class="poweredby">
Powered by
<?php
echo HTMLHelper::_(
'link',
'https://www.joomlashack.com',
HTMLHelper::_('image', $jslogo, 'Joomlashack', 'class="joomlashack-logo" width="150"', true),
'target="_blank"'
);
?>
</div>
<div class="joomlashack-copyright">
<?php echo '&copy; ' . date('Y'); ?> Joomlashack.com. All rights reserved.
</div>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
let footer = document.getElementsByClassName('joomlashack-footer').item(0),
container = footer ? footer.parentElement : null,
wrapper = null;
if (container && container.classList.contains('controls')) {
wrapper = document.getElementById('content') || document.querySelector('.container-popup');
}
if (footer && wrapper) {
wrapper.parentNode.insertBefore(footer, wrapper.nextSibling);
} else if (footer) {
footer.remove();
}
});
</script>

View File

@@ -0,0 +1,195 @@
<?php
/**
* @package OSMap
* @contact www.joomlashack.com, help@joomlashack.com
* @copyright 2021-2024 Joomlashack.com. All rights reserved
* @license https://www.gnu.org/licenses/gpl.html GNU/GPL
*
* This file is part of OSMap.
*
* OSMap is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* OSMap is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with OSMap. If not, see <https://www.gnu.org/licenses/>.
*/
use Alledia\OSMap\Factory;
use Joomla\CMS\Form\FormField;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Layout\FileLayout;
use Joomla\Utilities\ArrayHelper;
defined('_JEXEC') or die();
/**
* @var FileLayout $this
* @var array $displayData
* @var string $layoutOutput
* @var string $path
*/
/**
* @var string $autocomplete
* @var boolean $autofocus
* @var string $class
* @var string $description
* @var boolean $disabled
* @var FormField $field
* @var NULL $group
* @var boolean $hidden
* @var string $hint
* @var string $id
* @var string $label
* @var string $labelclass
* @var boolean $multiple
* @var string $name
* @var string $onchange
* @var string $onclick
* @var string $pattern
* @var string $validationtext
* @var boolean $readonly
* @var boolean $repeat
* @var boolean $required
* @var integer $size
* @var boolean $spellcheck
* @var string $validate
* @var array[] $value
* @var object[] $options
*/
extract($displayData);
$attributes = [
'type' => $multiple ? 'checkbox' : 'radio',
'size' => $size,
'class' => $class,
];
$sortableId = $id . '_menus';
HTMLHelper::_('jquery.framework');
HTMLHelper::_('draggablelist.draggable');
$script = <<<JSCRIPT
;jQuery(document).ready(function ($) {
let \$ordering = $('#{$id}_menus_ordering'),
drake = dragula([document.querySelector('.osmap-draggable')]);
let menuItems = function() {
return $('#{$sortableId}').find('[id^="{$id}_"]:checkbox');
};
let setOrdering = function() {
let menu_ordering = [];
menuItems().each(function() {
if (this.checked) {
menu_ordering.push('menu_' + this.value);
}
});
\$ordering.val(menu_ordering.join(','));
};
menuItems().on('click', setOrdering);
drake.on('drop', setOrdering);
setOrdering();
});
JSCRIPT;
Factory::getDocument()->addScriptDeclaration($script);
if ($disabled || $readonly) :
$attributes['disabled'] = 'disabled';
endif;
$changeFrequencyLabel = Text::_('COM_OSMAP_CHANGE_FREQUENCY_LABEL');
$priorityLabel = Text::_('COM_OSMAP_PRIORITY_LABEL');
$selectedLabel = Text::_('COM_OSMAP_SELECTED_LABEL');
$titleLabel = Text::_('COM_OSMAP_TITLE_LABEL');
?>
<table id="<?php echo $sortableId; ?>" class="adminlist table table-striped">
<thead>
<tr>
<th scope="col" class="w-1 text-center"><?php echo $selectedLabel; ?></th>
<th scope="col" class="w-10"><?php echo $titleLabel; ?></th>
<th scope="col" class="w-5"><?php echo $priorityLabel; ?></th>
<th scope="col" class="w-5"><?php echo $changeFrequencyLabel; ?></th>
<th scope="col">&nbsp;</th>
</tr>
</thead>
<tbody class="osmap-draggable">
<?php
$currentItems = array_keys($value);
$nameRegex = sprintf('/(%s\[[^]]+)(].*)/', $field->formControl);
foreach ($options as $idx => $option) :
$prioritiesName = preg_replace($nameRegex, '$1_priority$2', $name);
$changeFrequencyName = preg_replace($nameRegex, '$1_changefreq$2', $name);
$selected = isset($value[$option->value]);
$thisId = $id . '_' . $idx;
$changePriorityField = HTMLHelper::_(
'osmap.priorities',
$prioritiesName,
($selected ? number_format($value[$option->value]['priority'], 1) : '0.5'),
$idx
);
$changeChangeFreqField = HTMLHelper::_(
'osmap.changefrequency',
$changeFrequencyName,
($selected ? $value[$option->value]['changefreq'] : 'weekly'),
$idx
);
$currentAttributes = array_filter(
array_merge(
$attributes,
[
'id' => $thisId,
'name' => $name,
'value' => $option->value
]
)
);
if ($selected) :
$currentAttributes['checked'] = 'checked';
endif;
?>
<tr>
<td class="text-center">
<input <?php echo ArrayHelper::toString($currentAttributes); ?>/>
</td>
<td class="text-nowrap">
<label for="<?php echo $thisId . '_id'; ?>" class="menu_label">
<?php echo $option->text; ?>
</label>
</td>
<td class="w2">
<?php echo $changePriorityField; ?>
</td>
<td class="w5">
<?php echo $changeChangeFreqField; ?>
</td>
<td>&nbsp;</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<input type="hidden"
id="<?php echo $id . '_menus_ordering'; ?>"
name="<?php echo sprintf('%s[menus_ordering]', $field->formControl); ?>"
value=""/>

View File

@@ -0,0 +1,178 @@
<?php
/**
* @package OSMap
* @contact www.joomlashack.com, help@joomlashack.com
* @copyright 2021-2024 Joomlashack.com. All rights reserved
* @license https://www.gnu.org/licenses/gpl.html GNU/GPL
*
* This file is part of OSMap.
*
* OSMap is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* OSMap is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with OSMap. If not, see <https://www.gnu.org/licenses/>.
*/
use Alledia\OSMap\Factory;
use Joomla\CMS\Form\FormField;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Layout\FileLayout;
use Joomla\Utilities\ArrayHelper;
defined('_JEXEC') or die();
/**
* @var FileLayout $this
* @var array $displayData
* @var string $layoutOutput
* @var string $path
*/
/**
* @var string $autocomplete
* @var boolean $autofocus
* @var string $class
* @var string $description
* @var boolean $disabled
* @var FormField $field
* @var NULL $group
* @var boolean $hidden
* @var string $hint
* @var string $id
* @var string $label
* @var string $labelclass
* @var boolean $multiple
* @var string $name
* @var string $onchange
* @var string $onclick
* @var string $pattern
* @var string $validationtext
* @var boolean $readonly
* @var boolean $repeat
* @var boolean $required
* @var integer $size
* @var boolean $spellcheck
* @var string $validate
* @var array[] $value
* @var object[] $options
*/
extract($displayData);
$attributes = [
'type' => $multiple ? 'checkbox' : 'radio',
'size' => $size,
'class' => $class,
];
HTMLHelper::_('jquery.ui', ['core', 'sortable']);
HTMLHelper::_('script', 'jui/sortablelist.js', false, true);
HTMLHelper::_('stylesheet', 'jui/sortablelist.css', false, true, false);
$sortableId = $id . '_menus';
$script = <<<JSCRIPT
;jQuery(document).ready(function ($) {
let \$menus = $('#{$sortableId}');
\$menus.sortable({appendTo: document.body})
.on('sortupdate', function() {
let ordering = $(this).sortable('toArray').toString();
$('#{$id}_menus_ordering').val(ordering);
})
.trigger('sortupdate');
});
JSCRIPT;
Factory::getDocument()->addScriptDeclaration($script);
if ($disabled || $readonly) :
$attributes['disabled'] = 'disabled';
endif;
$changeFrequencyLabel = Text::_('COM_OSMAP_CHANGE_FREQUENCY_LABEL');
$priorityLabel = Text::_('COM_OSMAP_PRIORITY_LABEL');
$selectedLabel = Text::_('COM_OSMAP_SELECTED_LABEL');
$titleLabel = Text::_('COM_OSMAP_TITLE_LABEL');
?>
<div class="osmap-table">
<div class="osmap-list-header">
<div class="osmap-cell osmap-col-selected"><?php echo $selectedLabel; ?></div>
<div class="osmap-cell osmap-col-title"><?php echo $titleLabel; ?></div>
<div class="osmap-cell osmap-col-priority"><?php echo $priorityLabel; ?></div>
<div class="osmap-cell osmap-col-changefreq"><?php echo $changeFrequencyLabel; ?></div>
</div>
<ul id="<?php echo $sortableId; ?>" class="ul_sortable">
<?php
$currentItems = array_keys($value);
$nameRegex = sprintf('/(%s\[[^]]+)(].*)/', $field->formControl);
foreach ($options as $idx => $option) :
$prioritiesName = preg_replace($nameRegex, '$1_priority$2', $name);
$changeFrequencyName = preg_replace($nameRegex, '$1_changefreq$2', $name);
$selected = isset($value[$option->value]);
$thisId = $id . '_' . $idx;
$changePriorityField = HTMLHelper::_(
'osmap.priorities',
$prioritiesName,
($selected ? number_format($value[$option->value]['priority'], 1) : '0.5'),
$idx
);
$changeChangeFreqField = HTMLHelper::_(
'osmap.changefrequency',
$changeFrequencyName,
($selected ? $value[$option->value]['changefreq'] : 'weekly'),
$idx
);
$currentAttributes = array_filter(
array_merge(
$attributes,
[
'id' => $thisId,
'name' => $name,
'value' => $option->value
]
)
);
if ($selected) :
$currentAttributes['checked'] = 'checked';
endif;
?>
<li id="<?php echo 'menu_' . $option->value; ?>"
class="osmap-menu-item">
<div class="osmap-cell osmap-col-selected">
<input <?php echo ArrayHelper::toString($currentAttributes); ?>/>
</div>
<div class="osmap-cell osmap-col-title">
<label for="<?php echo $thisId . '_id'; ?>" class="menu_label">
<?php echo $option->text; ?>
</label>
</div>
<div class="osmap-cell osmap-col-priority osmap-menu-options">
<?php echo $changePriorityField; ?>
</div>
<div class="osmap-cell osmap-col-changefreq osmap-menu-options">
<?php echo $changeChangeFreqField; ?>
</div>
</li>
<?php endforeach; ?>
</ul>
<input type="hidden"
id="<?php echo $id . '_menus_ordering'; ?>"
name="<?php echo sprintf('%s[menus_ordering]', $field->formControl); ?>"
value=""/>
</div>