PATH:
usr
/
local
/
jetapps
/
var
/
lib
/
3rdparty
/
dropbox
/
src
/
Models
<?php namespace Kunnu\Dropbox\Models; class FileSharingInfo 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 file. * * @var string */ protected $parent_shared_folder_id; /** * The last user who modified the file. * This field will be null if the user's account has been deleted. * * @var string */ protected $modified_by; /** * Create a new File Sharing Info instance * * @param array $data */ public function __construct(array $data) { parent::__construct($data); $this->read_only = $this->getDataProperty('read_only'); $this->modified_by = $this->getDataProperty('modified_by'); $this->parent_shared_folder_id = $this->getDataProperty('parent_shared_folder_id'); } /** * True if the file 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 file. * * @return string */ public function getParentSharedFolderId() { return $this->parent_shared_folder_id; } /** * Get the last user who modified the file. * * @return string */ public function getModifiedBy() { return $this->modified_by; } }
[-] 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]