Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
vnsm /
components /
com_rsform /
views /
rsform /
Delete
Unzip
Name
Size
Permission
Date
Action
tmpl
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
index.html
50
B
-rwxr-xr-x
2023-07-13 17:52
metadata.xml
180
B
-rwxr-xr-x
2023-07-13 17:52
view.html.php
1.37
KB
-rwxr-xr-x
2023-07-13 17:52
Save
Rename
<?php /** * @package RSForm! Pro * @copyright (C) 2007-2019 www.rsjoomla.com * @license GPL, http://www.gnu.org/copyleft/gpl.html */ defined('_JEXEC') or die('Restricted access'); class RsformViewRsform extends JViewLegacy { public function display( $tpl = null ) { $this->params = $this->get('Params'); $this->formId = $this->get('FormId'); $this->document = JFactory::getDocument(); $title = $this->params->get('page_title', ''); if (empty($title)) { $title = JFactory::getApplication()->get('sitename'); } elseif (JFactory::getApplication()->get('sitename_pagetitles', 0) == 1) { $title = JText::sprintf('JPAGETITLE', JFactory::getApplication()->get('sitename'), $title); } elseif (JFactory::getApplication()->get('sitename_pagetitles', 0) == 2) { $title = JText::sprintf('JPAGETITLE', $title, JFactory::getApplication()->get('sitename')); } $this->document->setTitle($title); if ($this->params->get('robots')) { $this->document->setMetadata('robots', $this->params->get('robots')); } if ($this->params->get('menu-meta_description')) { $this->document->setDescription($this->params->get('menu-meta_description')); } if ($this->params->get('menu-meta_keywords')) { $this->document->setMetadata('keywords', $this->params->get('menu-meta_keywords')); } parent::display($tpl); } }