PATH:
usr
/
local
/
jetapps
/
var
/
lib
/
3rdparty
/
dropbox
/
src
/
Models
<?php namespace Kunnu\Dropbox\Models; class SearchResult extends BaseModel { /** * Indicates what type of match was found for the result * * @var string */ protected $matchType = null; /** * File\Folder Metadata * * @var \Kunnu\Dropbox\Models\FileMetadata|\Kunnu\Dropbox\Models\FolderMetadata */ protected $metadata; /** * Create a new SearchResult instance * * @param array $data */ public function __construct(array $data) { parent::__construct($data); $matchType = $this->getDataProperty('match_type'); $this->matchType = isset($matchType['.tag']) ? $matchType['.tag'] : null; $this->setMetadata(); } /** * Set Metadata * * @return void */ protected function setMetadata() { $metadata = $this->getDataProperty('metadata'); if (is_array($metadata)) { $this->metadata = ModelFactory::make($metadata); } } /** * Indicates what type of match was found for the result * * @return bool */ public function getMatchType() { return $this->matchType; } /** * Get the Search Result Metadata * * @return \Kunnu\Dropbox\Models\FileMetadata|\Kunnu\Dropbox\Models\FolderMetadata */ public function getMetadata() { return $this->metadata; } }
[-] 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]