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 /
Delete
Unzip
Name
Size
Permission
Date
Action
field
[ DIR ]
drwxr-xr-x
2017-10-04 08:52
header
[ DIR ]
drwxr-xr-x
2017-10-04 08:52
field.php
935
B
-rw-r--r--
2017-11-07 06:31
form.php
15.85
KB
-rw-r--r--
2017-11-07 06:31
header.php
11.2
KB
-rw-r--r--
2017-11-07 06:31
helper.php
5.84
KB
-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; /** * Generic interface that a FOF form field class must implement * * @package FrameworkOnFramework * @since 2.0 */ interface FOFFormField { /** * Get the rendering of this field type for static display, e.g. in a single * item view (typically a "read" task). * * @return string The field HTML * * @since 2.0 */ public function getStatic(); /** * Get the rendering of this field type for a repeatable (grid) display, * e.g. in a view listing many item (typically a "browse" task) * * @return string The field HTML * * @since 2.0 */ public function getRepeatable(); }