HEX
Server: Apache
System: Linux main79 6.1.0-52-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.180-1 (2026-08-03) x86_64
User: serwer143450 (7544)
PHP: 7.4.33
Disabled: opcache_reset, opcache_invalidate, opcache_compile_file, opcache_get_configuration, opcache_get_status
Upload Files
File: /home/platne/serwer143450/public_html/tukultura.pl/wp-content/plugins/wp-reset/libs/pCloud/User.php
<?php

namespace pCloud;

class User {

	private $request;
	private $userInfo;

	function __construct() {
		$this->request = new Request();
		$this->userInfo = $this->request->get("userinfo");
	}

	public function getUserInfo() {
		return $this->userInfo;
	}

	public function getUserId() {
		return $this->userInfo->userid;
	}

	public function getUserEmail() {
		return $this->userInfo->email;
	}

	public function getUsedQuota() {
		return $this->userInfo->usedquota;
	}

	public function getQuota() {
		return $this->userInfo->quota;
	}

	public function getPublicLinkQuota() {
		return $this->userInfo->publiclinkquota;
	}
}