PATH:
usr
/
local
/
jetapps
/
var
/
lib
/
3rdparty
/
dropbox
/
src
<?php namespace Kunnu\Dropbox; class DropboxApp { /** * The Client ID of the App * * @link https://www.dropbox.com/developers/apps * * @var string */ protected $clientId; /** * The Client Secret of the App * * @link https://www.dropbox.com/developers/apps * * @var string */ protected $clientSecret; /** * The Access Token * * @var string */ protected $accessToken; /** * Create a new Dropbox instance * * @param string $clientId Application Client ID * @param string $clientSecret Application Client Secret * @param string $accessToken Access Token */ public function __construct($clientId, $clientSecret, $accessToken = null) { $this->clientId = $clientId; $this->clientSecret = $clientSecret; $this->accessToken = $accessToken; } /** * Get the App Client ID * * @return string */ public function getClientId() { return $this->clientId; } /** * Get the App Client Secret * * @return string */ public function getClientSecret() { return $this->clientSecret; } /** * Get the Access Token * * @return string */ public function getAccessToken() { return $this->accessToken; } }
[+]
Exceptions
[+]
Illuminate
[-] DropboxFile.php
[edit]
[+]
..
[+]
Store
[+]
Security
[-] DropboxRequest.php
[edit]
[-] DropboxClient.php
[edit]
[-] DropboxResponse.php
[edit]
[-] DropboxResponseToFile.php
[edit]
[+]
Models
[+]
Http
[-] DropboxApp.php
[edit]
[+]
Authentication
[-] Dropbox.php
[edit]