| 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/amisdesseniors-fr/pornic/components/com_rsform/views/submissions/ |
Upload File : |
<?php
/**
* @package RSForm! Pro
* @copyright (C) 2007-2019 www.rsjoomla.com
* @license GPL, http://www.gnu.org/copyleft/gpl.html
*/
defined('_JEXEC') or die;
use Joomla\CMS\MVC\View\HtmlView;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
class RsformViewSubmissions extends HtmlView
{
/* @var $params Joomla\Registry\Registry */
public $params;
public function display($tpl = null)
{
$this->params = Factory::getApplication()->getParams('com_rsform');
if ($this->getLayout() == 'default')
{
$this->template = $this->get('listingTemplate');
$this->filter = $this->get('filter');
$this->pagination = $this->get('pagination');
}
else
{
// Add pathway
Factory::getApplication()->getPathway()->addItem(Text::_('RSFP_VIEW_SUBMISSION'), '');
$this->template = $this->get('detailTemplate');
}
$title = $this->params->get('page_title', '');
$this->setDocumentTitle($title);
if ($robots = $this->params->get('robots'))
{
$this->document->setMetadata('robots', $robots);
}
if ($desc = $this->params->get('menu-meta_description'))
{
$this->document->setDescription($desc);
}
if ($keywords = $this->params->get('menu-meta_keywords'))
{
$this->document->setMetadata('keywords', $keywords);
}
parent::display($tpl);
}
}