Linux business57.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
Server IP : 199.188.201.191 & Your IP : 18.118.37.224
Domains :
Cant Read [ /etc/named.conf ]
User : derozboy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
derozboy /
herotex-group.site /
Workspace /
Delete
Unzip
Name
Size
Permission
Date
Action
Worker
[ DIR ]
drwxr-xr-x
2025-04-28 08:52
Workflow
[ DIR ]
drwxr-xr-x
2025-04-25 06:40
.htaccess
237
B
-r-xr-xr-x
2025-04-28 08:52
EventContext.php
1.71
KB
-rw-r--r--
2022-02-10 05:51
EventList.php
5.64
KB
-rw-r--r--
2022-02-10 05:51
TaskPage.php
1.16
KB
-rw-r--r--
2022-02-10 05:51
WorkerList.php
7.92
KB
-rw-r--r--
2022-02-10 05:51
WorkflowPage.php
1.19
KB
-rw-r--r--
2022-02-10 05:51
Save
Rename
<?php /** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ namespace Twilio\Rest\Taskrouter\V1\Workspace; use Twilio\Exceptions\TwilioException; use Twilio\InstanceContext; use Twilio\Values; use Twilio\Version; class EventContext extends InstanceContext { /** * Initialize the EventContext * * @param Version $version Version that contains the resource * @param string $workspaceSid The SID of the Workspace with the Event to fetch * @param string $sid The SID of the resource to fetch */ public function __construct(Version $version, $workspaceSid, $sid) { parent::__construct($version); // Path Solution $this->solution = ['workspaceSid' => $workspaceSid, 'sid' => $sid, ]; $this->uri = '/Workspaces/' . \rawurlencode($workspaceSid) . '/Events/' . \rawurlencode($sid) . ''; } /** * Fetch the EventInstance * * @return EventInstance Fetched EventInstance * @throws TwilioException When an HTTP error occurs. */ public function fetch(): EventInstance { $payload = $this->version->fetch('GET', $this->uri); return new EventInstance( $this->version, $payload, $this->solution['workspaceSid'], $this->solution['sid'] ); } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString(): string { $context = []; foreach ($this->solution as $key => $value) { $context[] = "$key=$value"; } return '[Twilio.Taskrouter.V1.EventContext ' . \implode(' ', $context) . ']'; } }