Linux host40.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Apache
: 68.65.120.213 | : 216.73.217.2
Cant Read [ /etc/named.conf ]
7.4.33
trade
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 /
trade /
mlm.tradesense.co.ke /
system /
Config /
[ HOME SHELL ]
Name
Size
Permission
Action
AutoloadConfig.php
5.38
KB
-rw-r--r--
BaseConfig.php
6.61
KB
-rw-r--r--
BaseService.php
12.47
KB
-rw-r--r--
Config.php
1.11
KB
-rw-r--r--
DotEnv.php
6.72
KB
-rw-r--r--
Factories.php
9.7
KB
-rw-r--r--
Factory.php
1.08
KB
-rw-r--r--
ForeignCharacters.php
7.84
KB
-rw-r--r--
Publisher.php
1.13
KB
-rw-r--r--
Routes.php
1.24
KB
-rw-r--r--
Services.php
19.25
KB
-rw-r--r--
View.php
3.48
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : View.php
<?php /** * This file is part of CodeIgniter 4 framework. * * (c) CodeIgniter Foundation <admin@codeigniter.com> * * For the full copyright and license information, please view * the LICENSE file that was distributed with this source code. */ namespace CodeIgniter\Config; /** * View configuration */ class View extends BaseConfig { /** * When false, the view method will clear the data between each * call. * * @var bool */ public $saveData = true; /** * Parser Filters map a filter name with any PHP callable. When the * Parser prepares a variable for display, it will chain it * through the filters in the order defined, inserting any parameters. * * To prevent potential abuse, all filters MUST be defined here * in order for them to be available for use within the Parser. */ public $filters = []; /** * Parser Plugins provide a way to extend the functionality provided * by the core Parser by creating aliases that will be replaced with * any callable. Can be single or tag pair. */ public $plugins = []; /** * Built-in View filters. * * @var array */ protected $coreFilters = [ 'abs' => '\abs', 'capitalize' => '\CodeIgniter\View\Filters::capitalize', 'date' => '\CodeIgniter\View\Filters::date', 'date_modify' => '\CodeIgniter\View\Filters::date_modify', 'default' => '\CodeIgniter\View\Filters::default', 'esc' => '\CodeIgniter\View\Filters::esc', 'excerpt' => '\CodeIgniter\View\Filters::excerpt', 'highlight' => '\CodeIgniter\View\Filters::highlight', 'highlight_code' => '\CodeIgniter\View\Filters::highlight_code', 'limit_words' => '\CodeIgniter\View\Filters::limit_words', 'limit_chars' => '\CodeIgniter\View\Filters::limit_chars', 'local_currency' => '\CodeIgniter\View\Filters::local_currency', 'local_number' => '\CodeIgniter\View\Filters::local_number', 'lower' => '\strtolower', 'nl2br' => '\CodeIgniter\View\Filters::nl2br', 'number_format' => '\number_format', 'prose' => '\CodeIgniter\View\Filters::prose', 'round' => '\CodeIgniter\View\Filters::round', 'strip_tags' => '\strip_tags', 'title' => '\CodeIgniter\View\Filters::title', 'upper' => '\strtoupper', ]; /** * Built-in View plugins. * * @var array */ protected $corePlugins = [ 'current_url' => '\CodeIgniter\View\Plugins::currentURL', 'previous_url' => '\CodeIgniter\View\Plugins::previousURL', 'mailto' => '\CodeIgniter\View\Plugins::mailto', 'safe_mailto' => '\CodeIgniter\View\Plugins::safeMailto', 'lang' => '\CodeIgniter\View\Plugins::lang', 'validation_errors' => '\CodeIgniter\View\Plugins::validationErrors', 'route' => '\CodeIgniter\View\Plugins::route', 'siteURL' => '\CodeIgniter\View\Plugins::siteURL', ]; /** * Merge the built-in and developer-configured filters and plugins, * with preference to the developer ones. */ public function __construct() { $this->filters = array_merge($this->coreFilters, $this->filters); $this->plugins = array_merge($this->corePlugins, $this->plugins); parent::__construct(); } }
Close