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.217.15
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
vnsm /
plugins /
system /
jqueryeasy /
fields /
Delete
Unzip
Name
Size
Permission
Date
Action
themes
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
bootstrapselect.php
1.13
KB
-rwxr-xr-x
2026-06-10 18:30
bootstrapversion.php
1.95
KB
-rwxr-xr-x
2026-06-10 18:30
captionradio.php
3.91
KB
-rwxr-xr-x
2026-06-10 18:30
cdnlinks.php
3.5
KB
-rwxr-xr-x
2026-06-10 18:30
dynamicsingleselectjqe.php
7.07
KB
-rwxr-xr-x
2026-06-10 18:30
extensionauthor.php
1015
B
-rwxr-xr-x
2026-06-10 18:30
extensionconnect.php
1.37
KB
-rwxr-xr-x
2026-06-10 18:30
extensionlink.php
5.12
KB
-rwxr-xr-x
2026-06-10 18:30
extensiontranslators.php
1.19
KB
-rwxr-xr-x
2026-06-10 18:30
extensionversion.php
1.09
KB
-rwxr-xr-x
2026-06-10 18:30
index.html
44
B
-rwxr-xr-x
2026-06-10 18:30
jchoptimizetest.php
1.14
KB
-rwxr-xr-x
2026-06-10 18:30
jquerymobileversion.php
1.4
KB
-rwxr-xr-x
2026-06-10 18:30
jqueryselect.php
1.37
KB
-rwxr-xr-x
2026-06-10 18:30
jqueryuithemeselect.php
3.36
KB
-rwxr-xr-x
2026-06-10 18:30
jqueryuiversion.php
3.01
KB
-rwxr-xr-x
2026-06-10 18:30
jqueryversion.php
2.42
KB
-rwxr-xr-x
2026-06-10 18:30
link.php
1.83
KB
-rwxr-xr-x
2026-06-10 18:30
message.php
4.55
KB
-rwxr-xr-x
2026-06-10 18:30
migrateselect.php
1.71
KB
-rwxr-xr-x
2026-06-10 18:30
migrateversion.php
2.89
KB
-rwxr-xr-x
2026-06-10 18:30
mootoolsversion.php
1.35
KB
-rwxr-xr-x
2026-06-10 18:30
subtitle.php
2.01
KB
-rwxr-xr-x
2026-06-10 18:30
sywextensionpresencetest.php
5.1
KB
-rwxr-xr-x
2026-06-10 18:30
sywonlinehelp.php
1.99
KB
-rwxr-xr-x
2026-06-10 18:30
sywprefixedtext.php
2.55
KB
-rwxr-xr-x
2026-06-10 18:30
templates.php
1.3
KB
-rwxr-xr-x
2026-06-10 18:30
themes.php
817
B
-rwxr-xr-x
2026-06-10 18:30
title.php
2.52
KB
-rwxr-xr-x
2026-06-10 18:30
Save
Rename
<?php /** * @copyright Copyright (C) 2011 Simplify Your Web, Inc. All rights reserved. * @license GNU General Public License version 3 or later; see LICENSE.txt */ // no direct access defined('_JEXEC') or die ; jimport('joomla.form.formfield'); jimport('joomla.filesystem.folder'); /* * Checks if an extension is installed * If not, link to download, otherwise link to enable/disable */ class JFormFieldSYWextensionpresencetest extends JFormField { public $type = 'SYWextensionpresencetest'; protected $extensiontype; protected $extensionelement; protected $extensionfolder; //protected $minversion; protected $downloadlink; protected $downloadtext; protected $title; protected $imagesrc; protected $alertlevel; protected function getLabel() { $html = ''; JHtml::_('bootstrap.tooltip'); $html .= '<div>'; $html .= '<a class="btn hasTooltip" href="'.$this->downloadlink.'" target="_blank" title="'.JText::_($this->title).'">'; if ($this->imagesrc) { $html .= '<img src="'.JURI::root().$this->imagesrc.'" alt="'.JText::_($this->title).'">'; } else { $html .= JText::_($this->title); } $html .= '</a>'; $html .= '</div>'; return $html; } protected function getInput() { $html = ''; $lang = JFactory::getLanguage(); $lang->load('lib_syw.sys', JPATH_SITE); $html .= '<span style="display: inline-block; padding-bottom: 10px">'.JText::_($this->description).'</span><br />'; $missing_extension = false; $alert = ''; if ($this->extensiontype == 'plugin') { if (!JFolder::exists(JPATH_ROOT.'/plugins/'.$this->extensionfolder.'/'.$this->extensionelement)) { $missing_extension = true; } else { if (JPluginHelper::isEnabled((string)$this->extensionfolder, (string)$this->extensionelement)) { $alert = ' success'; //$html .= '<span class="icon-publish"></span> <span>'.JText::_('JENABLED').'</span> <a class="btn btn-mini" href="index.php?option=com_plugins&view=plugins&filter_folder='.$this->extensionfolder.'&filter_enabled=1">'.JText::_('LIB_SYW_SYWEXTENSIONTEST_DISABLEPLUGIN').'</a>'; $html .= '<span class="label label-success">'.JText::_('JENABLED').'</span> <a class="btn btn-mini" href="index.php?option=com_plugins&view=plugins&filter_folder='.$this->extensionfolder.'&filter_enabled=1">'.JText::_('LIB_SYW_SYWEXTENSIONTEST_DISABLEPLUGIN').'</a>'; } else { $alert = ' '.$this->alertlevel; //$html .= '<span class="icon-unpublish"></span> <span>'.JText::_('JDISABLED').'</span> <a class="btn btn-mini" href="index.php?option=com_plugins&view=plugins&filter_folder='.$this->extensionfolder.'&filter_enabled=0">'.JText::_('LIB_SYW_SYWEXTENSIONTEST_ENABLEPLUGIN').'</a>'; $html .= '<span class="label label-important">'.JText::_('JDISABLED').'</span> <a class="btn btn-mini" href="index.php?option=com_plugins&view=plugins&filter_folder='.$this->extensionfolder.'&filter_enabled=0">'.JText::_('LIB_SYW_SYWEXTENSIONTEST_ENABLEPLUGIN').'</a>'; } } } else if ($this->extensiontype == 'component') { if (JFolder::exists(JPATH_ADMINISTRATOR . '/components/'.$this->extensionelement)) { if (JComponentHelper::isEnabled((string)$this->extensionelement)) { $alert = ' success'; $html .= '<span class="label label-success">'.JText::_('JENABLED').'</span>'; // index.php?option=com_installer&view=manage&filter_status=1&filter_type=component } else { $alert = ' '.$this->alertlevel; $html .= '<span class="label label-important">'.JText::_('JDISABLED').'</span>'; // index.php?option=com_installer&view=manage&filter_status=0&filter_type=component } } else { $missing_extension = true; } } if ($missing_extension) { $alert = ' '.$this->alertlevel; $html .= '<a class="btn btn-' . $this->alertlevel . '" href="'.$this->downloadlink.'" target="_blank">'.JText::_($this->downloadtext).'</a>'; } return '<div class="syw_info'.$alert.'" style="padding-top: 5px; overflow: inherit">'.$html.'</div>'; } public function setup(SimpleXMLElement $element, $value, $group = null) { $return = parent::setup($element, $value, $group); if ($return) { $this->extensiontype = $this->element['extensiontype']; $this->extensionelement = $this->element['extensionelement']; $this->extensionfolder = isset($this->element['extensionfolder']) ? $this->element['extensionfolder'] : ''; //$this->minversion = isset($this->element['minversion']) ? $this->element['minversion'] : ''; $this->downloadlink = $this->element['downloadlink']; $this->downloadtext = isset($this->element['downloadtext']) ? trim($this->element['downloadtext']) : 'LIB_SYW_SYWEXTENSIONTEST_DOWNLOAD'; $this->title = isset($this->element['title']) ? trim($this->element['title']) : ''; $this->imagesrc = isset($this->element['imagesrc']) ? $this->element['imagesrc'] : ''; // ex: modules/mod_latestnews/images/icon.png $this->alertlevel = isset($this->element['alertlevel']) ? $this->element['alertlevel'] : 'info'; } return $return; } } ?>