Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
lusedi /
libraries /
fof /
form /
header /
Delete
Unzip
Name
Size
Permission
Date
Action
accesslevel.php
1.02
KB
-rw-r--r--
2017-11-07 06:31
field.php
928
B
-rw-r--r--
2017-11-07 06:31
fielddate.php
3.09
KB
-rw-r--r--
2017-11-07 06:31
fieldfilterable.php
2.74
KB
-rw-r--r--
2017-11-07 06:31
fieldsearchable.php
2.74
KB
-rw-r--r--
2017-11-07 06:31
fieldselectable.php
3.27
KB
-rw-r--r--
2017-11-07 06:31
fieldsql.php
1.66
KB
-rw-r--r--
2017-11-07 06:31
filterdate.php
623
B
-rw-r--r--
2017-11-07 06:31
filterfilterable.php
634
B
-rw-r--r--
2017-11-07 06:31
filtersearchable.php
634
B
-rw-r--r--
2017-11-07 06:31
filterselectable.php
630
B
-rw-r--r--
2017-11-07 06:31
filtersql.php
612
B
-rw-r--r--
2017-11-07 06:31
language.php
1.02
KB
-rw-r--r--
2017-11-07 06:31
model.php
2.85
KB
-rw-r--r--
2017-11-07 06:31
ordering.php
1.8
KB
-rw-r--r--
2017-11-07 06:31
published.php
1.28
KB
-rw-r--r--
2017-11-07 06:31
rowselect.php
723
B
-rw-r--r--
2017-11-07 06:31
Save
Rename
<?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; } }