146 lines
5.3 KiB
PHP

<?php
/*----------------------------------------------------------------------------------| www.vdm.io |----/
Agence Agerix
/-------------------------------------------------------------------------------------------------------/
@version 1.x.x
@build 2nd June, 2022
@created 12th December, 2020
@package Extension Distributor
@subpackage default_body.php
@author Emmanuel Danan <https://agerix.fr>
@copyright Copyright (C) 2021. All Rights Reserved.
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
____ _____ _____ __ __ __ __ ___ _____ __ __ ____ _____ _ _ ____ _ _ ____
(_ _)( _ )( _ )( \/ )( ) /__\ / __)( _ )( \/ )( _ \( _ )( \( )( ___)( \( )(_ _)
.-_)( )(_)( )(_)( ) ( )(__ /(__)\ ( (__ )(_)( ) ( )___/ )(_)( ) ( )__) ) ( )(
\____) (_____)(_____)(_/\/\_)(____)(__)(__) \___)(_____)(_/\/\_)(__) (_____)(_)\_)(____)(_)\_) (__)
/------------------------------------------------------------------------------------------------------*/
// No direct access to this file
defined('_JEXEC') or die('Restricted access');
$edit = "index.php?option=com_extensiondistributor&view=releases&task=release.edit";
?>
<?php foreach ($this->items as $i => $item): ?>
<?php
$canCheckin = $this->user->authorise('core.manage', 'com_checkin') || $item->checked_out == $this->user->id || $item->checked_out == 0;
$userChkOut = JFactory::getUser($item->checked_out);
$canDo = ExtensiondistributorHelper::getActions('release',$item,'releases');
?>
<tr class="row<?php echo $i % 2; ?>">
<td class="order nowrap center hidden-phone">
<?php if ($canDo->get('core.edit.state')): ?>
<?php
$iconClass = '';
if (!$this->saveOrder)
{
$iconClass = ' inactive tip-top" hasTooltip" title="' . JHtml::tooltipText('JORDERINGDISABLED');
}
?>
<span class="sortable-handler<?php echo $iconClass; ?>">
<i class="icon-menu"></i>
</span>
<?php if ($this->saveOrder) : ?>
<input type="text" style="display:none" name="order[]" size="5"
value="<?php echo $item->ordering; ?>" class="width-20 text-area-order " />
<?php endif; ?>
<?php else: ?>
&#8942;
<?php endif; ?>
</td>
<td class="nowrap center">
<?php if ($canDo->get('core.edit')): ?>
<?php if ($item->checked_out) : ?>
<?php if ($canCheckin) : ?>
<?php echo JHtml::_('grid.id', $i, $item->id); ?>
<?php else: ?>
&#9633;
<?php endif; ?>
<?php else: ?>
<?php echo JHtml::_('grid.id', $i, $item->id); ?>
<?php endif; ?>
<?php else: ?>
&#9633;
<?php endif; ?>
</td>
<td class="hidden-phone">
<div><?php echo JLayoutHelper::render( 'statewidget', array($item) ); ?>
</div>
</td>
<td class="hidden-phone">
<?php echo $this->escape($item->extension_name); ?>
</td>
<td class="hidden-phone">
<?php echo $this->escape($item->package_name); ?>
</td>
<td class="nowrap">
<div><span class="lead">
<?php if ($canDo->get('core.edit')): ?>
<a href="<?php echo $edit; ?>&id=<?php echo $item->id; ?>"><?php echo $this->escape($item->version_number); ?></a>
<?php if ($item->checked_out): ?>
<?php echo JHtml::_('jgrid.checkedout', $i, $userChkOut->name, $item->checked_out_time, 'releases.', $canCheckin); ?>
<?php endif; ?>
<?php else: ?>
<?php echo $this->escape($item->version_number); ?>
<?php endif; ?></span>
<?php
$lists = ExtensiondistributorHelper::getApplicationLists();
$level = ExtensiondistributorHelper::getVar('release',$item->id,'id','stability');
$stability = $lists['stability'];
?>
<span class="uk-margin-small-left label label-<?= $stability[$level]['color'] ?>"><?= $stability[$level]['label'] ?></span>
<!-- [11]=> Version (releases); [41]=> Stability (releases) -->
</div>
</td>
<td class="hidden-phone">
<div><?php if ($item->file == -1) : ?>
<div class="label label-important"><span class="icon-warning"></span> N/A</div>
<?php else : ?>
<?php $view = strtolower(JFactory::getApplication()->input->get('view')); ?>
<a
class="agxbtn agxbtn-mini"
href="index.php?option=com_extensiondistributor&task=extension.download&<?= $view ?>=<?= $item->$view ?>&release=<?= $item->id ?>&<?= JSession::getFormToken() ?>=1"
>
<span class="icon-download"></span> Download
</a>
<?php endif; ?>
</div>
</td>
<td class="hidden-phone">
<div><?= JHtml::date($item->release_date,'DATE_FORMAT_LC3'); ?>
</div>
</td>
<td class="hidden-phone">
<?php echo JText::_($item->reltype); ?>
</td>
<td class="hidden-phone">
<div><?= $item->description; ?>
</div>
</td>
<td class="center">
<?php if ($canDo->get('core.edit.state')) : ?>
<?php if ($item->checked_out) : ?>
<?php if ($canCheckin) : ?>
<?php echo JHtml::_('jgrid.published', $item->published, $i, 'releases.', true, 'cb'); ?>
<?php else: ?>
<?php echo JHtml::_('jgrid.published', $item->published, $i, 'releases.', false, 'cb'); ?>
<?php endif; ?>
<?php else: ?>
<?php echo JHtml::_('jgrid.published', $item->published, $i, 'releases.', true, 'cb'); ?>
<?php endif; ?>
<?php else: ?>
<?php echo JHtml::_('jgrid.published', $item->published, $i, 'releases.', false, 'cb'); ?>
<?php endif; ?>
</td>
<td class="nowrap center hidden-phone">
<?php echo $item->id; ?>
</td>
</tr>
<?php endforeach; ?>