| Server IP : 46.105.57.169 / Your IP : 216.73.216.144 Web Server : Apache System : Linux webd003.cluster120.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 : maitricfuz ( 93378) PHP Version : 8.4.10 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/maitricfuz/www/saint-martin-lg/components/com_convertforms/views/submission/ |
Upload File : |
<?php
/**
* @package Convert Forms
* @version 5.1.6 Free
*
* @author Tassos Marinos <info@tassos.gr>
* @link https://www.tassos.gr
* @copyright Copyright © 2024 Tassos All Rights Reserved
* @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later
*/
defined('_JEXEC') or die;
use Joomla\CMS\MVC\View\HtmlView;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Router\Route;
/**
* Content categories view.
*
* @since 1.5
*/
class ConvertFormsViewSubmission extends HtmlView
{
/**
* Display the Hello World view
*
* @param string $tpl The name of the template file to parse; automatically searches through the template paths.
*
* @return void
*/
public function display($tpl = null)
{
if (!$this->submission = $this->get('Item'))
{
Factory::getApplication()->enqueueMessage(Text::_('COM_CONVERTFORMS_SUBMISSION_INVALID'), 'error');
return;
}
$this->_prepareDocument();
$this->params = Factory::getApplication()->getParams();
// Layout checks
if ($this->params->get('layout_type', 'file') == 'custom')
{
$layout = $this->params->get('layout_details');
$layout = \Joomla\CMS\HTML\HTMLHelper::_('content.prepare', $layout);
if (!empty($layout))
{
echo ConvertForms\Submission::replaceSmartTags($this->submission, $layout);
return;
}
}
$this->menu = $this->get('Menu');
$this->submissions_link = Route::_('index.php?option=com_convertforms&view=submissions&Itemid=' . $this->menu->id);
// Display the view
$this->setLayout($this->params->get('submissions_layout'));
parent::display($tpl);
}
/**
* Prepares the document
*
* @return void
*/
protected function _prepareDocument()
{
$doc = Factory::getDocument();
$app = Factory::getApplication();
$activeMenuItem = $app->getMenu()->getActive();
$params = $activeMenuItem->getParams();
if ($robots_value = $params->get('robots'))
{
$robots = $doc->getMetaData('robots');
$robots = empty($robots) ? $robots_value : $robots . ', ' . $robots_value;
$doc->setMetaData('robots', $robots);
}
if ($params->get('menu-meta_keywords'))
{
$doc->setMetadata('keywords', $params->get('menu-meta_keywords'));
}
if ($params->get('menu-meta_description'))
{
$doc->setDescription($params->get('menu-meta_description'));
}
}
}