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
|
|
|
|
*/
|
|
|
|
|
2024-03-09 19:52:51 +00:00
|
|
|
use Joomla\CMS\Factory;
|
|
|
|
use Joomla\CMS\Language\Text;
|
|
|
|
use Joomla\CMS\HTML\HTMLHelper as Html;
|
|
|
|
use VDM\Component\Componentbuilder\Administrator\Helper\ComponentbuilderHelper;
|
2023-10-18 07:26:30 +00:00
|
|
|
use VDM\Joomla\Utilities\StringHelper;
|
2021-03-05 03:08:47 +00:00
|
|
|
|
2024-03-09 19:52:51 +00:00
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die;
|
|
|
|
|
2021-03-05 03:08:47 +00:00
|
|
|
$edit = "index.php?option=com_componentbuilder&view=site_views&task=site_view.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;
|
2024-03-09 19:52:51 +00:00
|
|
|
$userChkOut = Factory::getContainer()->
|
|
|
|
get(\Joomla\CMS\User\UserFactoryInterface::class)->
|
|
|
|
loadUserById($item->checked_out);
|
2016-01-30 20:28:43 +00:00
|
|
|
$canDo = ComponentbuilderHelper::getActions('site_view',$item,'site_views');
|
|
|
|
?>
|
|
|
|
<tr class="row<?php echo $i % 2; ?>">
|
|
|
|
<td class="order nowrap center hidden-phone">
|
|
|
|
<?php if ($canDo->get('core.edit.state')): ?>
|
|
|
|
<?php
|
2020-11-26 17:33:39 +00:00
|
|
|
$iconClass = '';
|
|
|
|
if (!$this->saveOrder)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2024-03-09 19:52:51 +00:00
|
|
|
$iconClass = ' inactive tip-top" hasTooltip" title="' . Html::tooltipText('JORDERINGDISABLED');
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
?>
|
|
|
|
<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('core.edit')): ?>
|
|
|
|
<?php if ($item->checked_out) : ?>
|
|
|
|
<?php if ($canCheckin) : ?>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('grid.id', $i, $item->id); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
<?php else: ?>
|
|
|
|
□
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php else: ?>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('grid.id', $i, $item->id); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
<?php else: ?>
|
|
|
|
□
|
|
|
|
<?php endif; ?>
|
|
|
|
</td>
|
|
|
|
<td class="nowrap">
|
2018-05-24 13:56:56 +00:00
|
|
|
<div class="name">
|
|
|
|
<?php if ($canDo->get('core.edit')): ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
<a href="<?php echo $edit; ?>&id=<?php echo $item->id; ?>"><?php echo $this->escape($item->system_name); ?></a>
|
|
|
|
<?php if ($item->checked_out): ?>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('jgrid.checkedout', $i, $userChkOut->name, $item->checked_out_time, 'site_views.', $canCheckin); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
<?php endif; ?>
|
2018-05-24 13:56:56 +00:00
|
|
|
<?php else: ?>
|
|
|
|
<?php echo $this->escape($item->system_name); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
2016-01-30 20:28:43 +00:00
|
|
|
</td>
|
|
|
|
<td class="hidden-phone">
|
2024-03-09 19:52:51 +00:00
|
|
|
<div><?php echo Text::_('COM_COMPONENTBUILDER_NAME'); ?>: <b>
|
2018-08-23 01:37:42 +00:00
|
|
|
<?php echo $this->escape($item->name); ?></b><br />
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Text::_('COM_COMPONENTBUILDER_CODE'); ?>: <b>
|
2018-08-23 01:37:42 +00:00
|
|
|
<?php echo $this->escape($item->codename); ?></b><br />
|
2023-10-18 07:26:30 +00:00
|
|
|
<?php if (StringHelper::check($item->context)): ?>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Text::_('COM_COMPONENTBUILDER_CONTEXT'); ?>: <b>
|
2018-08-23 01:37:42 +00:00
|
|
|
<?php echo $this->escape($item->context); ?></b>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
2016-01-30 20:28:43 +00:00
|
|
|
</td>
|
|
|
|
<td class="hidden-phone">
|
2018-08-23 01:37:42 +00:00
|
|
|
<div><em>
|
|
|
|
<?php echo $this->escape($item->description); ?></em>
|
|
|
|
<ul style="list-style: none">
|
2024-03-09 19:52:51 +00:00
|
|
|
<li><?php echo Text::_("COM_COMPONENTBUILDER_CUSTOM_BUTTON"); ?>: <b>
|
|
|
|
<?php echo Text::_($item->add_custom_button); ?></b></li>
|
|
|
|
<li><?php echo Text::_("COM_COMPONENTBUILDER_AJAX"); ?>: <b>
|
|
|
|
<?php echo Text::_($item->add_php_ajax); ?></b></li>
|
2018-08-23 01:37:42 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
2016-01-30 20:28:43 +00:00
|
|
|
</td>
|
2018-08-23 01:37:42 +00:00
|
|
|
<td class="nowrap">
|
|
|
|
<div class="name">
|
2022-05-16 04:25:03 +00:00
|
|
|
<?php if ($this->user->authorise('dynamic_get.edit', 'com_componentbuilder.dynamic_get.' . (int) $item->main_get)): ?>
|
2022-05-16 04:27:50 +00:00
|
|
|
<a href="index.php?option=com_componentbuilder&view=dynamic_gets&task=dynamic_get.edit&id=<?php echo $item->main_get; ?>&return=<?php echo $this->return_here; ?>"><?php echo $this->escape($item->main_get_name); ?></a>
|
2018-08-23 01:37:42 +00:00
|
|
|
<?php else: ?>
|
|
|
|
<?php echo $this->escape($item->main_get_name); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
2016-01-30 20:28:43 +00:00
|
|
|
</td>
|
|
|
|
<td class="center">
|
|
|
|
<?php if ($canDo->get('core.edit.state')) : ?>
|
|
|
|
<?php if ($item->checked_out) : ?>
|
|
|
|
<?php if ($canCheckin) : ?>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('jgrid.published', $item->published, $i, 'site_views.', true, 'cb'); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
<?php else: ?>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('jgrid.published', $item->published, $i, 'site_views.', false, 'cb'); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
<?php else: ?>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('jgrid.published', $item->published, $i, 'site_views.', true, 'cb'); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
<?php else: ?>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('jgrid.published', $item->published, $i, 'site_views.', 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; ?>
|