2016-01-30 20:28:43 +00:00
|
|
|
<?php
|
2021-03-05 03:08:47 +00:00
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 30th April, 2015
|
2022-07-09 15:45:08 +00:00
|
|
|
* @author Llewellyn van der Merwe <https://dev.vdm.io>
|
|
|
|
* @git Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
|
2021-03-05 03:08:47 +00:00
|
|
|
* @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_components&task=joomla_component.edit";
|
|
|
|
|
|
|
|
?>
|
2016-01-30 20:28:43 +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);
|
2017-02-16 14:02:23 +00:00
|
|
|
$canDo = ComponentbuilderHelper::getActions('joomla_component',$item,'joomla_components');
|
2016-01-30 20:28:43 +00:00
|
|
|
?>
|
|
|
|
<tr class="row<?php echo $i % 2; ?>">
|
|
|
|
<td class="order nowrap center hidden-phone">
|
2017-10-14 18:07:23 +00:00
|
|
|
<?php if ($canDo->get('joomla_component.edit.state')): ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
<?php
|
2020-11-26 17:33:39 +00:00
|
|
|
$iconClass = '';
|
|
|
|
if (!$this->saveOrder)
|
2016-01-30 20:28:43 +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">
|
2017-10-14 18:07:23 +00:00
|
|
|
<?php if ($canDo->get('joomla_component.edit')): ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
<?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">
|
2018-08-19 20:15:43 +00:00
|
|
|
<div>
|
|
|
|
<?php if ($canDo->get('joomla_component.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_components.', $canCheckin); ?>
|
2017-10-30 13:08:02 +00:00
|
|
|
<?php endif; ?>
|
2018-08-19 20:15:43 +00:00
|
|
|
<?php else: ?>
|
|
|
|
<?php echo $this->escape($item->system_name); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
- <?php echo $this->escape($item->component_version); ?>
|
|
|
|
</div>
|
2019-07-28 21:48:42 +00:00
|
|
|
<?php
|
2019-11-08 16:07:08 +00:00
|
|
|
// always make sure the $this->return_here is set
|
|
|
|
if (!isset($this->return_here))
|
|
|
|
{
|
|
|
|
$this->return_here = urlencode(base64_encode((string) JUri::getInstance()));
|
|
|
|
}
|
2018-08-19 20:15:43 +00:00
|
|
|
// setup the buttons
|
|
|
|
if (!isset($_buttons) || !ComponentbuilderHelper::checkArray($_buttons))
|
|
|
|
{
|
|
|
|
$_buttons = array();
|
|
|
|
$_buttons[0] = array(
|
|
|
|
array(
|
|
|
|
'view' => 'component_admin_views',
|
|
|
|
'views' => 'components_admin_views',
|
|
|
|
'title' => JText::_('COM_COMPONENTBUILDER_THE_COMPONENT_ADMIN_VIEWS'),
|
|
|
|
'icon' => 'stack'),
|
|
|
|
array(
|
|
|
|
'view' => 'component_custom_admin_views',
|
|
|
|
'views' => 'components_custom_admin_views',
|
|
|
|
'title' => JText::_('COM_COMPONENTBUILDER_THE_COMPONENT_CUSTOM_ADMIN_VIEWS'),
|
|
|
|
'icon' => 'screen'),
|
|
|
|
array(
|
|
|
|
'view' => 'component_site_views',
|
|
|
|
'views' => 'components_site_views',
|
|
|
|
'title' => JText::_('COM_COMPONENTBUILDER_THE_COMPONENT_SITE_VIEWS'),
|
|
|
|
'icon' => 'palette'),
|
|
|
|
array(
|
|
|
|
'view' => 'component_config',
|
|
|
|
'views' => 'components_config',
|
|
|
|
'title' => JText::_('COM_COMPONENTBUILDER_THE_COMPONENT_CONFIG'),
|
|
|
|
'icon' => 'options')
|
|
|
|
);
|
|
|
|
$_buttons[1] = array(
|
2019-02-15 22:03:21 +00:00
|
|
|
array(
|
|
|
|
'view' => 'component_placeholders',
|
|
|
|
'views' => 'components_placeholders',
|
|
|
|
'title' => JText::_('COM_COMPONENTBUILDER_THE_COMPONENT_PLACEHOLDERS'),
|
|
|
|
'icon' => 'search'),
|
2018-08-19 20:15:43 +00:00
|
|
|
array(
|
|
|
|
'view' => 'component_updates',
|
|
|
|
'views' => 'components_updates',
|
|
|
|
'title' => JText::_('COM_COMPONENTBUILDER_THE_COMPONENT_UPDATES'),
|
|
|
|
'icon' => 'database'),
|
|
|
|
array(
|
|
|
|
'view' => 'component_mysql_tweaks',
|
|
|
|
'views' => 'components_mysql_tweaks',
|
|
|
|
'title' => JText::_('COM_COMPONENTBUILDER_THE_COMPONENT_MYSQL_TWEAKS'),
|
|
|
|
'icon' => 'screwdriver'),
|
|
|
|
array(
|
|
|
|
'view' => 'component_files_folders',
|
|
|
|
'views' => 'components_files_folders',
|
|
|
|
'title' => JText::_('COM_COMPONENTBUILDER_THE_COMPONENT_FILES_FOLDERS'),
|
|
|
|
'icon' => 'briefcase')
|
|
|
|
);
|
|
|
|
$_buttons[2] = array(
|
|
|
|
array(
|
|
|
|
'view' => 'component_custom_admin_menus',
|
|
|
|
'views' => 'components_custom_admin_menus',
|
|
|
|
'title' => JText::_('COM_COMPONENTBUILDER_THE_COMPONENT_CUSTOM_ADMIN_MENUS'),
|
|
|
|
'icon' => 'plus'),
|
|
|
|
array(
|
|
|
|
'view' => 'component_dashboard',
|
|
|
|
'views' => 'components_dashboard',
|
|
|
|
'title' => JText::_('COM_COMPONENTBUILDER_THE_COMPONENT_DASHBOARD'),
|
2019-07-17 02:36:05 +00:00
|
|
|
'icon' => 'dashboard'),
|
2019-12-06 05:31:32 +00:00
|
|
|
array(
|
|
|
|
'view' => 'component_modules',
|
|
|
|
'views' => 'components_modules',
|
|
|
|
'title' => JText::_('COM_COMPONENTBUILDER_THE_COMPONENT_MODULES'),
|
|
|
|
'icon' => 'cube'),
|
2019-07-17 02:36:05 +00:00
|
|
|
array(
|
|
|
|
'view' => 'component_plugins',
|
|
|
|
'views' => 'components_plugins',
|
|
|
|
'title' => JText::_('COM_COMPONENTBUILDER_THE_COMPONENT_PLUGINS'),
|
|
|
|
'icon' => 'power-cord')
|
2018-08-19 20:15:43 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<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_component', 'id')) !== false): ?>
|
2019-07-28 21:48:42 +00:00
|
|
|
<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>
|
2018-08-19 20:15:43 +00:00
|
|
|
<?php elseif ($canDo->get($_button['view'].'.create')): ?>
|
2019-07-28 21:48:42 +00:00
|
|
|
<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_component&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>
|
2018-08-19 20:15:43 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
<?php endforeach; ?>
|
2017-10-30 13:08:02 +00:00
|
|
|
</div>
|
2016-01-30 20:28:43 +00:00
|
|
|
</td>
|
|
|
|
<td class="hidden-phone">
|
2018-08-19 20:15:43 +00:00
|
|
|
<div>
|
|
|
|
<?php echo $this->escape($item->name_code); ?>
|
|
|
|
</div>
|
|
|
|
<div class="btn-group" style="margin: 5px 0 0 0;">
|
|
|
|
<?php foreach ($_buttons[1] as $_button): ?>
|
|
|
|
<?php if ($canDo->get($_button['view'].'.edit') && ($id = ComponentbuilderHelper::getVar($_button['view'], $item->id, 'joomla_component', 'id')) !== false): ?>
|
2019-07-28 21:48:42 +00:00
|
|
|
<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>
|
2018-08-19 20:15:43 +00:00
|
|
|
<?php elseif ($canDo->get($_button['view'].'.create')): ?>
|
2019-07-28 21:48:42 +00:00
|
|
|
<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_component&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>
|
2018-08-19 20:15:43 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
<?php endforeach; ?>
|
2017-10-30 13:08:02 +00:00
|
|
|
</div>
|
2016-01-30 20:28:43 +00:00
|
|
|
</td>
|
|
|
|
<td class="hidden-phone">
|
2018-08-19 20:15:43 +00:00
|
|
|
<div>
|
|
|
|
<?php echo $this->escape($item->short_description); ?>
|
|
|
|
</div>
|
|
|
|
<div class="btn-group" style="margin: 5px 0 0 0;">
|
|
|
|
<?php foreach ($_buttons[2] as $_button): ?>
|
|
|
|
<?php if ($canDo->get($_button['view'].'.edit') && ($id = ComponentbuilderHelper::getVar($_button['view'], $item->id, 'joomla_component', 'id')) !== false): ?>
|
2019-07-28 21:48:42 +00:00
|
|
|
<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>
|
2018-08-19 20:15:43 +00:00
|
|
|
<?php elseif ($canDo->get($_button['view'].'.create')): ?>
|
2019-07-28 21:48:42 +00:00
|
|
|
<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_component&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>
|
2018-08-19 20:15:43 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
<?php endforeach; ?>
|
2017-10-30 13:08:02 +00:00
|
|
|
</div>
|
2016-01-30 20:28:43 +00:00
|
|
|
</td>
|
|
|
|
<td class="hidden-phone">
|
2018-08-19 20:15:43 +00:00
|
|
|
<div><b><?php echo $this->escape($item->companyname); ?></b><br />
|
|
|
|
<?php if (ComponentbuilderHelper::checkString($item->author)) : ?>
|
|
|
|
<em><?php echo $this->escape($item->author); ?><em><br />
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php if (ComponentbuilderHelper::checkString($item->email) && ComponentbuilderHelper::checkString($item->author)) : ?>
|
|
|
|
<a href="mailto:<?php echo $this->escape($item->email); ?>" title="<?php echo JText::sprintf('COM_COMPONENTBUILDER_EMAIL_S', $item->author); ?>" target="_blank">
|
|
|
|
<?php echo $this->escape($item->email); ?>
|
|
|
|
</a>
|
|
|
|
<br />
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php if (ComponentbuilderHelper::checkString($item->website) && ComponentbuilderHelper::checkString($item->author)) : ?>
|
|
|
|
<a href="<?php echo $this->escape($item->website); ?>" title="<?php echo JText::sprintf('COM_COMPONENTBUILDER_WEBSITE_OF_S', $item->companyname); ?>" target="_blank">
|
|
|
|
<?php echo $this->escape($item->website); ?>
|
|
|
|
</a>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
2016-01-30 20:28:43 +00:00
|
|
|
</td>
|
|
|
|
<td class="center">
|
2017-10-14 18:07:23 +00:00
|
|
|
<?php if ($canDo->get('joomla_component.edit.state')) : ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
<?php if ($item->checked_out) : ?>
|
|
|
|
<?php if ($canCheckin) : ?>
|
2017-02-16 14:02:23 +00:00
|
|
|
<?php echo JHtml::_('jgrid.published', $item->published, $i, 'joomla_components.', true, 'cb'); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
<?php else: ?>
|
2017-02-16 14:02:23 +00:00
|
|
|
<?php echo JHtml::_('jgrid.published', $item->published, $i, 'joomla_components.', false, 'cb'); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
<?php else: ?>
|
2017-02-16 14:02:23 +00:00
|
|
|
<?php echo JHtml::_('jgrid.published', $item->published, $i, 'joomla_components.', true, 'cb'); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
<?php else: ?>
|
2017-02-16 14:02:23 +00:00
|
|
|
<?php echo JHtml::_('jgrid.published', $item->published, $i, 'joomla_components.', false, 'cb'); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
</td>
|
|
|
|
<td class="nowrap center hidden-phone">
|
|
|
|
<?php echo $item->id; ?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<?php endforeach; ?>
|