| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/plats-individuels/lyon/administrator/components/com_rstbox/views/item/ |
Upload File : |
<?php
/**
* @package EngageBox
* @version 6.3.7 Pro
*
* @author Tassos Marinos <info@tassos.gr>
* @link http://www.tassos.gr
* @copyright Copyright © 2019 Tassos Marinos All Rights Reserved
* @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later
*/
defined('_JEXEC') or die('Restricted access');
use Joomla\CMS\Toolbar\ToolbarHelper;
use Joomla\CMS\Toolbar\Toolbar;
use Joomla\CMS\MVC\View\HtmlView;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Factory;
/**
* Item View
*/
class RstboxViewItem extends HtmlView
{
/**
* display method of Item view
* @return void
*/
public function display($tpl = null)
{
// Check for errors.
if (count($errors = $this->get('Errors')))
{
Factory::getApplication()->enqueueMessage($errors, 'error');
return false;
}
// Load Smart Tags
if (Factory::getApplication()->input->get('layout') == "smarttags")
{
$smartTags = new NRFramework\SmartTags();
$this->tags = $smartTags->get();
} else
{
// Assign the Data
$this->form = $this->get('Form');
$this->item = $this->get('Item');
// Redirect to list page when the popup we are trying to edit does not exist.
if (!$this->item)
{
Factory::getApplication()->enqueueMessage(Text::sprintf('This popup does not exist.'), 'error');
Factory::getApplication()->redirect('index.php?option=com_rstbox&view=items');
}
$this->isnew = (!isset($_REQUEST["id"])) ? true : false;
$this->addToolBar();
}
// Display the template
parent::display($tpl);
}
/**
* Setting the toolbar
*/
protected function addToolBar()
{
$input = Factory::getApplication()->input;
$input->set('hidemainmenu', true);
$isNew = ($this->item->id == 0);
ToolBarHelper::title($isNew ? Text::_('New Box') : Text::_('Edit Box: ' . $this->item->name . " - ". $this->item->id));
if (defined('nrJ4'))
{
$toolbar = Toolbar::getInstance();
$saveGroup = $toolbar->dropdownButton('save-group');
$saveGroup->configure(
function (Toolbar $childBar)
{
$childBar->apply('item.apply');
$childBar->save('item.save');
$childBar->save2new('item.save2new');
$childBar->save2copy('item.save2copy');
}
);
ToolbarHelper::modal('smarttags', 'icon-tag', Text::_("NR_SMARTTAGS"));
$toolbar->cancel('item.cancel', 'JTOOLBAR_CLOSE');
return;
}
ToolbarHelper::apply('item.apply');
ToolBarHelper::save('item.save');
ToolbarHelper::save2new('item.save2new');
ToolbarHelper::modal('smarttags', 'icon-tag', Text::_("NR_SMARTTAGS"));
ToolBarHelper::cancel('item.cancel', $isNew ? 'JTOOLBAR_CANCEL' : 'JTOOLBAR_CLOSE');
}
}