File manager - Edit - /home/proidvn/me.proid.vn/wp-content/plugins/mailin/wonderpush-php-lib/lib/Api/Applications.php
Back
<?php namespace WonderPush\Api; if (count(get_included_files()) === 1) { http_response_code(403); exit(); } // Prevent direct access use WonderPush\Obj\ApplicationCollection; use WonderPush\Params\CollectionParams; /** * Applications API. */ class Applications { /** * Instance of the library whose credentials are to be used. * @var \WonderPush\WonderPush */ private $wp; public function __construct(\WonderPush\WonderPush $wp) { $this->wp = $wp; } /** * List applications associated with the access token used to initialize the WonderPush object. * @param array|CollectionParams $collectionParams * @return ApplicationCollection * @throws \WonderPush\Errors\Base */ public function all($collectionParams = array()) { $response = $this->wp->rest()->get('/applications', is_array($collectionParams) ? $collectionParams : $collectionParams->toArray()); return $response->checkedResult('\WonderPush\Obj\ApplicationCollection'); } public function patch($applicationId, $body = array(), $params = array()) { $response = $this->wp->rest()->patch('/applications/' . $applicationId, array_merge($params, array('body' => $body))); return $response->checkedResult('\WonderPush\Obj\Application', 'application'); } /** * Get domains for an application. * @param string $applicationId * @return \WonderPush\Obj\WebDomain[] * @throws \WonderPush\Errors\Base */ public function domains($applicationId) { $response = $this->wp->rest()->get('/applications/' . urlencode($applicationId) . '/domains'); $body = $response->parsedBody(); $domains = array(); if (isset($body->domains) && is_array($body->domains)) { foreach ($body->domains as $domainData) { $domains[] = new \WonderPush\Obj\WebDomain($domainData); } } return $domains; } }
| ver. 1.4 |
Github
|
.
| PHP 8.0.30 | Generation time: 0.12 |
proxy
|
phpinfo
|
Settings