Server : LiteSpeed System : Linux server 3.10.0-1160.90.1.el7.x86_64 #1 SMP Thu May 4 15:21:22 UTC 2023 x86_64 User : alsaif ( 1057) PHP Version : 7.4.33 Disable Function : show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/alsaif/public_html/administrator/components/com_convertforms/views/forms/ |
<?php
/**
* @package Convert Forms
* @version 4.3.3 Pro
*
* @author Tassos Marinos <info@tassos.gr>
* @link https://www.tassos.gr
* @copyright Copyright © 2023 Tassos 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\Toolbar;
use Joomla\CMS\Toolbar\ToolbarHelper;
// import Joomla view library
jimport('joomla.application.component.view');
/**
* Forms View Class
*/
class ConvertFormsViewForms extends JViewLegacy
{
/**
* Items view display method
*
* @param string $tpl The name of the template file to parse; automatically searches through the template paths.
*
* @return mixed A string if successful, otherwise a JError object.
*/
public function display($tpl = null)
{
// Access check.
ConvertForms\Helper::authorise('convertforms.forms.manage', true);
$this->items = $this->get('Items');
$this->state = $this->get('State');
$this->pagination = $this->get('Pagination');
$this->filterForm = $this->get('FilterForm');
$this->activeFilters = $this->get('ActiveFilters');
$this->config = \Joomla\CMS\Component\ComponentHelper::getParams('com_convertforms');
ConvertForms\Helper::addSubmenu('forms');
$this->sidebar = JHtmlSidebar::render();
$this->moduleID = NRFramework\Extension::getID('mod_convertforms', 'module');
// Check for errors.
if (!is_null($this->get('Errors')) && count($errors = $this->get('Errors')))
{
JFactory::getApplication()->enqueueMessage(implode("\n", $errors), 'error');
return false;
}
// Set the toolbar
$this->addToolBar();
// Load the ConvertForms Templates Library
new ConvertForms\Library();
// Display the template
parent::display($tpl);
}
/**
* Add Toolbar to layout
*/
protected function addToolBar()
{
$canDo = ConvertForms\Helper::getActions();
$state = $this->get('State');
$viewLayout = JFactory::getApplication()->input->get('layout', 'default');
// Joomla J4
if (defined('nrJ4'))
{
$toolbar = Toolbar::getInstance('toolbar');
if ($viewLayout == 'import')
{
$title = JText::_('COM_CONVERTFORMS') . ': ' . JText::_('NR_IMPORT_ITEMS');
JFactory::getDocument()->setTitle($title);
JToolbarHelper::title($title);
JToolbarHelper::back();
}
else
{
ToolbarHelper::title(JText::_('COM_CONVERTFORMS') . ": " . JText::_('COM_CONVERTFORMS_FORMS'));
if ($canDo->get('core.create'))
{
$newGroup = $toolbar->dropdownButton('new-group');
$newGroup->configure(
function (Toolbar $childBar)
{
$childBar->popupButton('new')->text('NR_NEW')->selector('cfSelectTemplate')->icon('icon-new')->buttonClass('btn btn-success');
$childBar->addNew('form.add')->text('COM_CONVERTFORMS_TEMPLATES_BLANK');
$childBar->standardButton('import')->text('NR_IMPORT')->task('forms.import')->icon('icon-upload');
}
);
}
$dropdown = $toolbar->dropdownButton('status-group')
->text('JTOOLBAR_CHANGE_STATUS')
->toggleSplit(false)
->icon('fas fa-ellipsis-h')
->buttonClass('btn btn-action')
->listCheck(true);
$childBar = $dropdown->getChildToolbar();
if ($canDo->get('core.edit.state'))
{
$childBar->publish('forms.publish')->listCheck(true);
$childBar->unpublish('forms.unpublish')->listCheck(true);
$childBar->standardButton('copy')->text('JTOOLBAR_DUPLICATE')->task('forms.duplicate')->listCheck(true);
$childBar->standardButton('export')->text('NR_EXPORT')->task('forms.export')->icon('icon-download')->listCheck(true);
$childBar->trash('forms.trash')->listCheck(true);
}
if ($this->state->get('filter.state') == -2)
{
$toolbar->delete('forms.delete')
->text('JTOOLBAR_EMPTY_TRASH')
->message('JGLOBAL_CONFIRM_DELETE')
->listCheck(true);
}
if ($canDo->get('core.admin'))
{
$toolbar->preferences('com_convertforms');
}
$toolbar->help('JHELP', false, "http://www.tassos.gr/joomla-extensions/convert-forms/docs");
}
return;
}
if ($viewLayout == 'import')
{
JFactory::getDocument()->setTitle(JText::_('COM_CONVERTFORMS') . ': ' . JText::_('NR_IMPORT_ITEMS'));
JToolbarHelper::title(JText::_('COM_CONVERTFORMS') . ': ' . JText::_('NR_IMPORT_ITEMS'));
JToolbarHelper::back();
}
else
{
JToolBarHelper::title(JText::_('COM_CONVERTFORMS') . ": " . JText::_('COM_CONVERTFORMS_FORMS'));
if ($canDo->get('core.create'))
{
JToolbarHelper::addNew('form.add');
}
if ($canDo->get('core.edit'))
{
JToolbarHelper::editList('form.edit');
}
if ($canDo->get('core.create'))
{
JToolbarHelper::custom('forms.duplicate', 'copy', 'copy', 'JTOOLBAR_DUPLICATE', true);
}
if ($canDo->get('core.edit.state') && $state->get('filter.state') != 2)
{
JToolbarHelper::publish('forms.publish', 'JTOOLBAR_PUBLISH', true);
JToolbarHelper::unpublish('forms.unpublish', 'JTOOLBAR_UNPUBLISH', true);
}
if ($canDo->get('core.delete') && $state->get('filter.state') == -2)
{
JToolbarHelper::deleteList('', 'forms.delete', 'JTOOLBAR_EMPTY_TRASH');
}
else if ($canDo->get('core.edit.state'))
{
JToolbarHelper::trash('forms.trash');
}
if ($canDo->get('core.create'))
{
JToolbarHelper::custom('forms.export', 'box-add', 'box-add', 'NR_EXPORT');
JToolbarHelper::custom('forms.import', 'box-remove', 'box-remove', 'NR_IMPORT', false);
}
if ($canDo->get('core.admin'))
{
JToolbarHelper::preferences('com_convertforms');
}
}
JToolbarHelper::help("Help", false, "http://www.tassos.gr/joomla-extensions/convert-forms/docs");
}
}