primo commit

This commit is contained in:
2024-12-17 17:34:10 +01:00
commit e650f8df99
16435 changed files with 2451012 additions and 0 deletions

View File

@ -0,0 +1,43 @@
<?php
/**
* @package JEM
* @copyright (C) 2013-2024 joomlaeventmanager.net
* @copyright (C) 2005-2009 Christoph Lukes
* @license https://www.gnu.org/licenses/gpl-3.0 GNU/GPL
*/
defined('_JEXEC') or die;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper;
?>
<form action="index.php" method="post" name="adminForm" id="adminForm">
<div class="imghead">
<?php echo Text::_('COM_JEM_SEARCH').' '; ?>
<input type="text" name="filter_search" id="filter_search" value="<?php echo $this->search; ?>" class="text_area form-control inputbox required valid form-control-success w-50" style="display:inline-block;" onChange="document.adminForm.submit();" />
<button class="buttonfilter btn btn-primary" type="submit"><?php echo Text::_('JSEARCH_FILTER_SUBMIT'); ?></button>
<button class="buttonfilter btn btn-primary" type="button" onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php echo Text::_('JSEARCH_FILTER_CLEAR'); ?></button>
</div>
<div class="imglist">
<?php
$n = is_array($this->images) ? count($this->images) : 0;
for ($i = 0; $i < $n; $i++) :
$this->setImage($i);
echo $this->loadTemplate('image');
endfor;
?>
</div>
<div class="clear"></div>
<div class="pnav">
<?php echo (method_exists($this->pagination, 'getPaginationLinks') ? $this->pagination->getPaginationLinks() : $this->pagination->getListFooter()); ?>
</div>
<?php echo HTMLHelper::_('form.token'); ?>
<input type="hidden" name="option" value="com_jem" />
<input type="hidden" name="view" value="imagehandler" />
<input type="hidden" name="tmpl" value="component" />
<input type="hidden" name="task" value="<?php echo $this->task; ?>" />
</form>

View File

@ -0,0 +1,32 @@
<?php
/**
* @package JEM
* @copyright (C) 2013-2024 joomlaeventmanager.net
* @copyright (C) 2005-2009 Christoph Lukes
* @license https://www.gnu.org/licenses/gpl-3.0 GNU/GPL
*/
defined('_JEXEC') or die;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Session\Session;
?>
<div class="item-image">
<div class="imgBorder center">
<a onclick="window.parent.SelectImage('<?php echo $this->_tmp_img->name; ?>', '<?php echo $this->_tmp_img->name; ?>');">
<div class="image">
<img src="../images/jem/<?php echo $this->folder; ?>/<?php echo $this->_tmp_img->name; ?>" width="<?php echo $this->_tmp_img->width_60; ?>" height="<?php echo $this->_tmp_img->height_60; ?>" alt="<?php echo $this->_tmp_img->name; ?> - <?php echo $this->_tmp_img->size; ?>" />
</div>
</a>
</div>
<div class="controls">
<?php echo $this->_tmp_img->size; ?> -
<a class="delete-item" href="index.php?option=com_jem&amp;task=imagehandler.delete&amp;tmpl=component&amp;folder=<?php echo $this->folder; ?>&amp;rm[]=<?php echo $this->_tmp_img->name; ?>&amp;<?php echo Session::getFormToken(); ?>=1">
<?php echo HTMLHelper::_('image','/media/com_jem/images/publish_r.png',Text::_('COM_JEM_DELETE_IMAGE'),array('title' => Text::_('COM_JEM_DELETE_IMAGE')),true); ?>
</a>
</div>
<div class="imageinfo">
<?php echo $this->escape(\Joomla\String\StringHelper::substr($this->_tmp_img->name, 0, 10) . (\Joomla\String\StringHelper::strlen($this->_tmp_img->name) > 10 ? '...' : '')); ?>
</div>
</div>

View File

@ -0,0 +1 @@
<!DOCTYPE html><title></title>

View File

@ -0,0 +1,158 @@
<?php
/**
* @package JEM
* @copyright (C) 2013-2024 joomlaeventmanager.net
* @copyright (C) 2005-2009 Christoph Lukes
* @license https://www.gnu.org/licenses/gpl-3.0 GNU/GPL
*/
defined('_JEXEC') or die;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper;
?>
<form method="post" action="<?php echo htmlspecialchars($this->request_url); ?>" enctype="multipart/form-data" name="adminForm" id="adminForm">
<table class="noshow">
<tr>
<td width="50%" valign="top">
<?php if($this->ftp): ?>
<fieldset class="adminform">
<legend><?php echo Text::_('COM_JEM_FTP_TITLE'); ?></legend>
<?php echo Text::_('COM_JEM_FTP_DESC'); ?>
<?php if($this->ftp INSTANCEOF Exception): ?>
<p><?php echo Text::_($this->ftp->message); ?></p>
<?php endif; ?>
<table class="adminform nospace">
<tbody>
<tr>
<td width="120">
<label for="username"><?php echo Text::_('COM_JEM_USERNAME'); ?>:</label>
</td>
<td>
<input type="text" id="username" name="username" class="input_box" size="70" value="" />
</td>
</tr>
<tr>
<td width="120">
<label for="password"><?php echo Text::_('COM_JEM_PASSWORD'); ?>:</label>
</td>
<td>
<input type="password" id="password" name="password" class="input_box" size="70" value="" />
</td>
</tr>
</tbody>
</table>
</fieldset>
<?php endif; ?>
<fieldset class="adminform">
<legend><?php echo Text::_('COM_JEM_SELECT_IMAGE_UPLOAD'); ?></legend>
<table class="admintable">
<tbody>
<tr>
<td>
<input class="inputbox" name="userfile" id="userfile" type="file" />
<br /><br />
<input class="btn btn-primary" type="submit" value="<?php echo Text::_('COM_JEM_UPLOAD') ?>" name="adminForm" />
</td>
</tr>
</tbody>
</table>
</fieldset>
</td>
<td width="50%" valign="top">
<fieldset class="adminform">
<legend><?php echo Text::_('COM_JEM_ATTENTION'); ?></legend>
<table class="admintable">
<tbody>
<tr>
<td>
<b><?php echo Text::_('COM_JEM_TARGET_DIRECTORY').':'; ?></b>
<?php
if($this->task == 'venueimg') {
echo "/images/jem/venues/";
$this->task = 'imagehandler.venueimgup';
} else if($this->task == 'eventimg') {
echo "/images/jem/events/";
$this->task = 'imagehandler.eventimgup';
} else if($this->task == 'categoriesimg') {
echo "/images/jem/categories/";
$this->task = 'imagehandler.categoriesimgup';
}
?>
<br />
<b><?php echo Text::_('COM_JEM_IMAGE_FILESIZE').':'; ?></b> <?php echo $this->jemsettings->sizelimit; ?> kb<br />
<?php
if($this->jemsettings->gddisabled == 0 || (imagetypes() & IMG_PNG)) {
echo "<br /><span style='color:green'>".Text::_('COM_JEM_PNG_SUPPORT')."</span>";
} else {
echo "<br /><span style='color:red'>".Text::_('COM_JEM_NO_PNG_SUPPORT')."</span>";
}
if($this->jemsettings->gddisabled == 0 || (imagetypes() & IMG_JPEG)) {
echo "<br /><span style='color:green'>".Text::_('COM_JEM_JPG_SUPPORT')."</span>";
} else {
echo "<br /><span style='color:red'>".Text::_('COM_JEM_NO_JPG_SUPPORT')."</span>";
}
if($this->jemsettings->gddisabled == 0 || (imagetypes() & IMG_GIF)) {
echo "<br /><span style='color:green'>".Text::_('COM_JEM_GIF_SUPPORT')."</span>";
} else {
echo "<br /><span style='color:red'>".Text::_('COM_JEM_NO_GIF_SUPPORT')."</span>";
}
if($this->jemsettings->gddisabled == 0 || (imagetypes() & IMG_WEBP)) {
echo "<br /><span style='color:green'>".Text::_('COM_JEM_WEBP_SUPPORT')."</span>";
} else {
echo "<br /><span style='color:red'>".Text::_('COM_JEM_NO_WEBP_SUPPORT')."</span>";
}
?>
</td>
</tr>
</tbody>
</table>
</fieldset>
</td>
</tr>
</table>
<?php if($this->jemsettings->gddisabled) { ?>
<table class="noshow">
<tr>
<td>
<fieldset class="adminform">
<legend><?php echo Text::_('COM_JEM_ATTENTION'); ?></legend>
<table class="admintable">
<tbody>
<tr>
<td class="center">
<?php echo Text::_('COM_JEM_GD_WARNING'); ?>
</td>
</tr>
</tbody>
</table>
</fieldset>
</td>
</tr>
</table>
<?php } ?>
<?php echo HTMLHelper::_('form.token'); ?>
<input type="hidden" name="option" value="com_jem" />
<input type="hidden" name="task" value="<?php echo $this->task;?>" />
</form>
<p class="copyright">
<?php echo JEMAdmin::footer(); ?>
</p>