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

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/uploads/script/vendor/mollie/mollie-api-php/src/Endpoints/   drwxr-xr-x
Free 13.05 GB of 57.97 GB (22.52%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Mollie\Api\Endpoints;

use 
Mollie\Api\Resources\Customer;
use 
Mollie\Api\Resources\ResourceFactory;
use 
Mollie\Api\Resources\Subscription;
use 
Mollie\Api\Resources\SubscriptionCollection;

class 
SubscriptionEndpoint extends CollectionEndpointAbstract
{
    protected 
$resourcePath "customers_subscriptions";

    
/**
     * Get the object that is used by this API endpoint. Every API endpoint uses one type of object.
     *
     * @return Subscription
     */
    
protected function getResourceObject()
    {
        return new 
Subscription($this->client);
    }

    
/**
     * Get the collection object that is used by this API endpoint. Every API endpoint uses one type of collection object.
     *
     * @param int $count
     * @param \stdClass $_links
     *
     * @return SubscriptionCollection
     */
    
protected function getResourceCollectionObject($count$_links)
    {
        return new 
SubscriptionCollection($this->client$count$_links);
    }

    
/**
     * Create a subscription for a Customer
     *
     * @param Customer $customer
     * @param array $options
     * @param array $filters
     *
     * @return Subscription
     */
    
public function createFor(Customer $customer, array $options = [], array $filters = [])
    {
        return 
$this->createForId($customer->id$options$filters);
    }

    
/**
     * Create a subscription for a Customer
     *
     * @param string $customerId
     * @param array $options
     * @param array $filters
     *
     * @return Subscription
     */
    
public function createForId($customerId, array $options = [], array $filters = [])
    {
        
$this->parentId $customerId;

        return 
parent::rest_create($options$filters);
    }

    
/**
     * @param Customer $customer
     * @param string $subscriptionId
     * @param array $parameters
     *
     * @return Subscription
     */
    
public function getFor(Customer $customer$subscriptionId, array $parameters = [])
    {
        return 
$this->getForId($customer->id$subscriptionId$parameters);
    }

    
/**
     * @param string $customerId
     * @param string $subscriptionId
     * @param array $parameters
     *
     * @return Subscription
     */
    
public function getForId($customerId$subscriptionId, array $parameters = [])
    {
        
$this->parentId $customerId;

        return 
parent::rest_read($subscriptionId$parameters);
    }

    
/**
     * @param Customer $customer
     * @param string $from The first resource ID you want to include in your list.
     * @param int $limit
     * @param array $parameters
     *
     * @return SubscriptionCollection
     */
    
public function listFor(Customer $customer$from null$limit null, array $parameters = [])
    {
        return 
$this->listForId($customer->id$from$limit$parameters);
    }

    
/**
     * @param string $customerId
     * @param string $from The first resource ID you want to include in your list.
     * @param int $limit
     * @param array $parameters
     *
     * @return SubscriptionCollection
     */
    
public function listForId($customerId$from null$limit null, array $parameters = [])
    {
        
$this->parentId $customerId;

        return 
parent::rest_list($from$limit$parameters);
    }

    
/**
     * @param Customer $customer
     * @param string $subscriptionId
     * @param array $data
     *
     * @return null
     * @throws \Mollie\Api\Exceptions\ApiException
     */
    
public function cancelFor(Customer $customer$subscriptionId, array $data = [])
    {
        return 
$this->cancelForId($customer->id$subscriptionId$data);
    }

    
/**
     * @param string $customerId
     * @param string $subscriptionId
     * @param array $data
     *
     * @return null
     * @throws \Mollie\Api\Exceptions\ApiException
     */
    
public function cancelForId($customerId$subscriptionId, array $data = [])
    {
        
$this->parentId $customerId;

        return 
parent::rest_delete($subscriptionId$data);
    }

    
/**
     * Retrieves a collection of Subscriptions from Mollie.
     *
     * @param string $from The first payment ID you want to include in your list.
     * @param int $limit
     * @param array $parameters
     *
     * @return SubscriptionCollection
     * @throws \Mollie\Api\Exceptions\ApiException
     */
    
public function page($from null$limit null, array $parameters = [])
    {
        
$filters array_merge(["from" => $from"limit" => $limit], $parameters);

        
$apiPath 'subscriptions' $this->buildQueryString($filters);

        
$result $this->client->performHttpCall(self::REST_LIST$apiPath);

        
/** @var SubscriptionCollection $collection */
        
$collection $this->getResourceCollectionObject($result->count$result->_links);

        foreach (
$result->_embedded->{$collection->getCollectionResourceName()} as $dataResult) {
            
$collection[] = ResourceFactory::createFromApiResult($dataResult$this->getResourceObject());
        }

        return 
$collection;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

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