PATH:
usr
/
local
/
jetapps
/
var
/
lib
/
3rdparty
/
dropbox
/
src
/
Models
<?php namespace Kunnu\Dropbox\Models; class FolderSharingInfo extends BaseModel { /** * True if the file or folder is inside a read-only shared folder. * * @var bool */ protected $read_only; /** * ID of shared folder that holds this folder. * Set if the folder is contained by a shared folder. * * @var string */ protected $parent_shared_folder_id; /** * If this folder is a shared folder mount point, * the ID of the shared folder mounted at this location. * * @var string */ protected $shared_folder_id; /** * Create a new Folder Sharing Info instance * * @param array $data */ public function __construct(array $data) { parent::__construct($data); $this->read_only = $this->getDataProperty('read_only'); $this->shared_folder_id = $this->getDataProperty('shared_folder_id'); $this->parent_shared_folder_id = $this->getDataProperty('parent_shared_folder_id'); } /** * True if the folder or folder is inside a read-only shared folder. * * @return bool */ public function isReadOnly() { return $this->read_only; } /** * ID of shared folder that holds this folder. * * @return string */ public function getParentSharedFolderId() { return $this->parent_shared_folder_id; } /** * ID of shared folder. * * @return string */ public function getSharedFolderId() { return $this->shared_folder_id; } }
[-] FolderMetadata.php
[edit]
[-] MediaMetadata.php
[edit]
[-] File.php
[edit]
[-] ModelInterface.php
[edit]
[+]
..
[-] ModelCollection.php
[edit]
[-] VideoMetadata.php
[edit]
[-] DeletedMetadata.php
[edit]
[-] MediaInfo.php
[edit]
[-] Thumbnail.php
[edit]
[-] Account.php
[edit]
[-] AccountList.php
[edit]
[-] AccessToken.php
[edit]
[-] FolderSharingInfo.php
[edit]
[-] CopyReference.php
[edit]
[-] BaseModel.php
[edit]
[-] SearchResult.php
[edit]
[-] SearchResults.php
[edit]
[-] FileSharingInfo.php
[edit]
[-] ModelFactory.php
[edit]
[-] TemporaryLink.php
[edit]
[-] MetadataCollection.php
[edit]
[-] PhotoMetadata.php
[edit]
[-] FileMetadata.php
[edit]