Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.223.122.53
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
hamcrest /
hamcrest-php /
generator /
Delete
Unzip
Name
Size
Permission
Date
Action
parts
[ DIR ]
drwxr-xr-x
2016-01-20 09:00
FactoryCall.php
611
B
-rw-r--r--
2016-01-20 09:00
FactoryClass.php
1.47
KB
-rw-r--r--
2016-01-20 09:00
FactoryFile.php
3.03
KB
-rw-r--r--
2016-01-20 09:00
FactoryGenerator.php
2.68
KB
-rw-r--r--
2016-01-20 09:00
FactoryMethod.php
5.52
KB
-rw-r--r--
2016-01-20 09:00
FactoryParameter.php
1.73
KB
-rw-r--r--
2016-01-20 09:00
GlobalFunctionFile.php
931
B
-rw-r--r--
2016-01-20 09:00
StaticMethodFile.php
773
B
-rw-r--r--
2016-01-20 09:00
run.php
1.06
KB
-rw-r--r--
2016-01-20 09:00
Save
Rename
<?php /* Copyright (c) 2009 hamcrest.org */ class GlobalFunctionFile extends FactoryFile { /** * @var string containing function definitions */ private $functions; public function __construct($file) { parent::__construct($file, ' '); $this->functions = ''; } public function addCall(FactoryCall $call) { $this->functions .= PHP_EOL . $this->generateFactoryCall($call); } public function build() { $this->addFileHeader(); $this->addPart('functions_imports'); $this->addPart('functions_header'); $this->addCode($this->functions); $this->addPart('functions_footer'); } public function generateFactoryCall(FactoryCall $call) { $code = "if (!function_exists('{$call->getName()}')) {"; $code.= parent::generateFactoryCall($call); $code.= "}\n"; return $code; } }