2019-07-15 20:00:46 +00:00
|
|
|
<?php
|
2021-03-05 03:08:47 +00:00
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 30th April, 2015
|
|
|
|
* @author Llewellyn van der Merwe <http://www.joomlacomponentbuilder.com>
|
2021-12-21 14:44:50 +00:00
|
|
|
* @gitea Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
|
2021-03-05 03:08:47 +00:00
|
|
|
* @github Joomla Component Builder <https://github.com/vdm-io/Joomla-Component-Builder>
|
|
|
|
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
|
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
|
|
|
$edit = "index.php?option=com_componentbuilder&view=joomla_plugins&task=joomla_plugin.edit";
|
|
|
|
|
|
|
|
?>
|
2019-07-15 20:00:46 +00:00
|
|
|
<?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 = ComponentbuilderHelper::getActions('joomla_plugin',$item,'joomla_plugins');
|
|
|
|
?>
|
|
|
|
<tr class="row<?php echo $i % 2; ?>">
|
|
|
|
<td class="order nowrap center hidden-phone">
|
|
|
|
<?php if ($canDo->get('joomla_plugin.edit.state')): ?>
|
|
|
|
<?php
|
2020-11-26 17:33:39 +00:00
|
|
|
$iconClass = '';
|
|
|
|
if (!$this->saveOrder)
|
2019-07-15 20:00:46 +00:00
|
|
|
{
|
|
|
|
$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: ?>
|
|
|
|
⋮
|
|
|
|
<?php endif; ?>
|
|
|
|
</td>
|
|
|
|
<td class="nowrap center">
|
|
|
|
<?php if ($canDo->get('joomla_plugin.edit')): ?>
|
|
|
|
<?php if ($item->checked_out) : ?>
|
|
|
|
<?php if ($canCheckin) : ?>
|
|
|
|
<?php echo JHtml::_('grid.id', $i, $item->id); ?>
|
|
|
|
<?php else: ?>
|
|
|
|
□
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php else: ?>
|
|
|
|
<?php echo JHtml::_('grid.id', $i, $item->id); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php else: ?>
|
|
|
|
□
|
|
|
|
<?php endif; ?>
|
|
|
|
</td>
|
|
|
|
<td class="nowrap">
|
2019-07-28 21:48:42 +00:00
|
|
|
<div>
|
|
|
|
<?php if ($canDo->get('joomla_plugin.edit')): ?>
|
|
|
|
<a href="<?php echo $edit; ?>&id=<?php echo $item->id; ?>"><?php echo $this->escape($item->system_name); ?></a>
|
|
|
|
<?php if ($item->checked_out): ?>
|
|
|
|
<?php echo JHtml::_('jgrid.checkedout', $i, $userChkOut->name, $item->checked_out_time, 'joomla_plugins.', $canCheckin); ?>
|
2019-07-15 20:00:46 +00:00
|
|
|
<?php endif; ?>
|
2019-07-28 21:48:42 +00:00
|
|
|
<?php else: ?>
|
|
|
|
<?php echo $this->escape($item->system_name); ?>
|
2019-08-08 15:35:58 +00:00
|
|
|
<?php endif; ?> - <b>
|
|
|
|
<?php echo $this->escape($item->plugin_version); ?></b>
|
2019-07-28 21:48:42 +00:00
|
|
|
</div>
|
|
|
|
<?php
|
|
|
|
// setup the buttons
|
|
|
|
if (!isset($_buttons) || !ComponentbuilderHelper::checkArray($_buttons))
|
|
|
|
{
|
|
|
|
$_buttons = array();
|
|
|
|
$_buttons[0] = array(
|
2019-08-08 15:35:58 +00:00
|
|
|
array(
|
|
|
|
'view' => 'joomla_plugin_updates',
|
|
|
|
'views' => 'joomla_plugins_updates',
|
|
|
|
'title' => JText::_('COM_COMPONENTBUILDER_THE_PLUGIN_UPDATES'),
|
|
|
|
'icon' => 'database'),
|
2019-07-28 21:48:42 +00:00
|
|
|
array(
|
|
|
|
'view' => 'joomla_plugin_files_folders_urls',
|
|
|
|
'views' => 'joomla_plugins_files_folders_urls',
|
|
|
|
'title' => JText::_('COM_COMPONENTBUILDER_THE_PLUGIN_FILES_FOLDERS'),
|
|
|
|
'icon' => 'briefcase')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<div class="btn-group" style="margin: 5px 0 0 0;">
|
|
|
|
<?php foreach ($_buttons[0] as $_button): ?>
|
|
|
|
<?php if ($canDo->get($_button['view'].'.edit') && ($id = ComponentbuilderHelper::getVar($_button['view'], $item->id, 'joomla_plugin', 'id')) !== false): ?>
|
|
|
|
<a class="hasTooltip btn btn-mini" href="index.php?option=com_componentbuilder&view=<?php echo $_button['views'] ?>&task=<?php echo $_button['view'] ?>.edit&id=<?php echo $id; ?>&return=<?php echo $this->return_here; ?>" title="<?php echo $_button['title']; ?>" ><span class="icon-<?php echo $_button['icon']; ?>"></span></a>
|
|
|
|
<?php elseif ($canDo->get($_button['view'].'.create')): ?>
|
|
|
|
<a class="hasTooltip btn btn-mini" href="index.php?option=com_componentbuilder&view=<?php echo $_button['views'] ?>&task=<?php echo $_button['view'] ?>.edit&ref=joomla_plugin&refid=<?php echo $item->id; ?>&return=<?php echo $this->return_here; ?>" title="<?php echo $_button['title']; ?>" ><span class="icon-<?php echo $_button['icon']; ?>"></span></a>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php endforeach; ?>
|
2019-07-15 20:00:46 +00:00
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<td class="nowrap">
|
|
|
|
<div class="name">
|
2022-05-16 04:25:03 +00:00
|
|
|
<?php if ($this->user->authorise('class_extends.edit', 'com_componentbuilder.class_extends.' . (int) $item->class_extends)): ?>
|
2022-05-16 04:27:50 +00:00
|
|
|
<a href="index.php?option=com_componentbuilder&view=class_extendings&task=class_extends.edit&id=<?php echo $item->class_extends; ?>&return=<?php echo $this->return_here; ?>"><?php echo $this->escape($item->class_extends_name); ?></a>
|
2019-07-15 20:00:46 +00:00
|
|
|
<?php else: ?>
|
|
|
|
<?php echo $this->escape($item->class_extends_name); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<td class="nowrap">
|
|
|
|
<div class="name">
|
2022-05-16 04:25:03 +00:00
|
|
|
<?php if ($this->user->authorise('core.edit', 'com_componentbuilder.joomla_plugin_group.' . (int) $item->joomla_plugin_group)): ?>
|
2022-05-16 04:27:50 +00:00
|
|
|
<a href="index.php?option=com_componentbuilder&view=joomla_plugin_groups&task=joomla_plugin_group.edit&id=<?php echo $item->joomla_plugin_group; ?>&return=<?php echo $this->return_here; ?>"><?php echo $this->escape($item->joomla_plugin_group_name); ?></a>
|
2019-07-15 20:00:46 +00:00
|
|
|
<?php else: ?>
|
|
|
|
<?php echo $this->escape($item->joomla_plugin_group_name); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<td class="center">
|
|
|
|
<?php if ($canDo->get('joomla_plugin.edit.state')) : ?>
|
|
|
|
<?php if ($item->checked_out) : ?>
|
|
|
|
<?php if ($canCheckin) : ?>
|
|
|
|
<?php echo JHtml::_('jgrid.published', $item->published, $i, 'joomla_plugins.', true, 'cb'); ?>
|
|
|
|
<?php else: ?>
|
|
|
|
<?php echo JHtml::_('jgrid.published', $item->published, $i, 'joomla_plugins.', false, 'cb'); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php else: ?>
|
|
|
|
<?php echo JHtml::_('jgrid.published', $item->published, $i, 'joomla_plugins.', true, 'cb'); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php else: ?>
|
|
|
|
<?php echo JHtml::_('jgrid.published', $item->published, $i, 'joomla_plugins.', false, 'cb'); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
</td>
|
|
|
|
<td class="nowrap center hidden-phone">
|
|
|
|
<?php echo $item->id; ?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<?php endforeach; ?>
|