[ SYSTEM ]: Windows NT SWD-ELEARN-11 10.0 build 20348 (Windows Server 2016) AMD64
[ SERVER ]: Apache/2.4.41 (Win64) OpenSSL/1.1.1c PHP/7.3.9 | PHP: 7.3.9
[ USER ]: Elearn | IP: 10.201.204.156
GEFORCE FILE MANAGER
/
C:
/
xampp
/
htdocs
/
Ajaji
/
backup
/
alajaji
/
libraries
/
cms
/
html
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 language
SET
[ DEL ]
📄 access.php
8,152 B
SET
[ EDIT ]
|
[ DEL ]
📄 actionsdropdown.php
5,730 B
SET
[ EDIT ]
|
[ DEL ]
📄 adminlanguage.php
1,403 B
SET
[ EDIT ]
|
[ DEL ]
📄 behavior.php
32,000 B
SET
[ EDIT ]
|
[ DEL ]
📄 category.php
5,658 B
SET
[ EDIT ]
|
[ DEL ]
📄 content.php
1,968 B
SET
[ EDIT ]
|
[ DEL ]
📄 contentlanguage.php
1,562 B
SET
[ EDIT ]
|
[ DEL ]
📄 date.php
2,071 B
SET
[ EDIT ]
|
[ DEL ]
📄 debug.php
1,467 B
SET
[ EDIT ]
|
[ DEL ]
📄 dropdown.php
8,988 B
SET
[ EDIT ]
|
[ DEL ]
📄 email.php
3,735 B
SET
[ EDIT ]
|
[ DEL ]
📄 form.php
1,717 B
SET
[ EDIT ]
|
[ DEL ]
📄 formbehavior.php
3,840 B
SET
[ EDIT ]
|
[ DEL ]
📄 grid.php
10,548 B
SET
[ EDIT ]
|
[ DEL ]
📄 icons.php
1,545 B
SET
[ EDIT ]
|
[ DEL ]
📄 jgrid.php
16,567 B
SET
[ EDIT ]
|
[ DEL ]
📄 jquery.php
3,827 B
SET
[ EDIT ]
|
[ DEL ]
📄 links.php
2,558 B
SET
[ EDIT ]
|
[ DEL ]
📄 list.php
6,841 B
SET
[ EDIT ]
|
[ DEL ]
📄 menu.php
9,827 B
SET
[ EDIT ]
|
[ DEL ]
📄 number.php
3,571 B
SET
[ EDIT ]
|
[ DEL ]
📄 rules.php
8,244 B
SET
[ EDIT ]
|
[ DEL ]
📄 searchtools.php
4,236 B
SET
[ EDIT ]
|
[ DEL ]
📄 select.php
28,132 B
SET
[ EDIT ]
|
[ DEL ]
📄 sidebar.php
3,162 B
SET
[ EDIT ]
|
[ DEL ]
📄 sliders.php
4,345 B
SET
[ EDIT ]
|
[ DEL ]
📄 string.php
9,427 B
SET
[ EDIT ]
|
[ DEL ]
📄 tabs.php
3,217 B
SET
[ EDIT ]
|
[ DEL ]
📄 tag.php
4,673 B
SET
[ EDIT ]
|
[ DEL ]
📄 tel.php
2,176 B
SET
[ EDIT ]
|
[ DEL ]
📄 user.php
1,668 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: tel.php
<?php /** * @package Joomla.Libraries * @subpackage HTML * * @copyright (C) 2011 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('JPATH_PLATFORM') or die; /** * HTML helper class for rendering telephone numbers. * * @since 1.6 */ abstract class JHtmlTel { /** * Converts strings of integers into more readable telephone format * * By default, the ITU-T format will automatically be used. * However, one of the allowed unit types may also be used instead. * * @param integer $number The integers in a phone number with dot separated country code * ccc.nnnnnnn where ccc represents country code and nnn represents the local number. * @param string $displayplan The numbering plan used to display the numbers. * * @return string The formatted telephone number. * * @see JFormRuleTel * @since 1.6 */ public static function tel($number, $displayplan) { $number = explode('.', $number); $countrycode = $number[0]; $number = $number[1]; if ($displayplan === 'ITU-T' || $displayplan === 'International' || $displayplan === 'int' || $displayplan === 'missdn' || $displayplan == null) { $display[0] = '+'; $display[1] = $countrycode; $display[2] = ' '; $display[3] = implode(' ', str_split($number, 2)); } elseif ($displayplan === 'NANP' || $displayplan === 'northamerica' || $displayplan === 'US') { $display[0] = '('; $display[1] = substr($number, 0, 3); $display[2] = ') '; $display[3] = substr($number, 3, 3); $display[4] = '-'; $display[5] = substr($number, 6, 4); } elseif ($displayplan === 'EPP' || $displayplan === 'IETF') { $display[0] = '+'; $display[1] = $countrycode; $display[2] = '.'; $display[3] = $number; } elseif ($displayplan === 'ARPA' || $displayplan === 'ENUM') { $number = implode('.', str_split(strrev($number), 1)); $display[0] = '+'; $display[1] = $number; $display[2] = '.'; $display[3] = $countrycode; $display[4] = '.e164.arpa'; } return implode('', $display); } }