summaryrefslogtreecommitdiffstats
path: root/lib/private/files/fileinfo.php
Commit message (Collapse)AuthorAgeFilesLines
* remove unencrypted_size from the cache, size will contain the unencrypted sizeBjoern Schiessle2015-04-071-7/+0
|
* Merge pull request #15234 from owncloud/encryption2_coreThomas Müller2015-03-261-0/+7
|\ | | | | core part of encryption 2.0
| * implement basic encryption functionallity in core to enable multiple ↵Bjoern Schiessle2015-03-261-0/+7
| | | | | | | | encryption modules
* | Update license headersJenkins for ownCloud2015-03-261-4/+23
|/
* Revert "Updating license headers"Morris Jobke2015-02-261-22/+5
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* Updating license headersJenkins for ownCloud2015-02-231-5/+22
|
* Store FileInfo::getType() result for future useRobin McCorkell2015-02-091-4/+3
|
* Add getMountPoint to FileInfoRobin Appelman2014-12-171-1/+20
|
* Replace deprecated constant with new class constantJoas Schilling2014-11-251-5/+5
|
* Check if the size field is availableLukas Reschke2014-11-171-1/+1
| | | | | | | | | | In some cases the 'size' field is not available resulting in some PHP errors such as: ```json {"reqId":"03548fd9e3d3aca15a5796b3b35d7b9d","remoteAddr":"::1","app":"PHP","message":"Undefined index: size at \/Users\/lreschke\/Programming\/core\/lib\/private\/files\/fileinfo.php#125","level":3,"time":"2014-11-17T21:38:57+00:00"} ``` This can be experienced when creating a new empty file and deleting it right away, then when going to the trash bin this error is thrown.
* Expose creatable permissions trough fileinfoRobin Appelman2014-09-251-0/+9
|
* shared files/folders are not mountedThomas Müller2014-08-071-1/+1
|
* Fix folder name for storage rootRobin Appelman2014-06-061-1/+1
|
* Merge pull request #8435 from owncloud/fix-8322-masterThomas Müller2014-05-191-0/+24
|\ | | | | Expose permission via WebDAV
| * - Introduce isShared() and isMounted() on FileInfo classThomas Müller2014-05-021-0/+24
| | | | | | | | | | | | - Reuse these methods on determineIcon() - Generate permission string for the desktop client - expose {http://owncloud.org/ns}permissions as additional WebDAV property containing the permission string
* | Squash 'a | b' into 'a|b', in /libRobin McCorkell2014-05-131-1/+1
|/
* Check if value exists before returningRobin Appelman2014-03-071-2/+5
|
* Fix FileInfo->getType errorsRobin Appelman2014-03-071-1/+8
|
* Scrutinizer Auto-FixesScrutinizer Auto-Fixer2014-02-191-0/+4
| | | | | | | | | | | This patch was automatically generated as part of the following inspection: https://scrutinizer-ci.com/g/owncloud/core/inspections/cdfecc4e-a37e-4233-8025-f0d7252a8720 Enabled analysis tools: - PHP Analyzer - JSHint - PHP Copy/Paste Detector - PHP PDepend
* remove the JsonSerializable interface from \OC\Files\FileInfoRobin Appelman2014-02-141-5/+1
|
* Add isReadable, isUpdateable, isDeletable, isShareableRobin Appelman2014-01-241-1/+37
|
* add Support for passing a FileInfo instance to View->putFileInfoRobin Appelman2014-01-131-0/+4
|
* remove ArrayAccess, JsonSerializable from the public part of FileInfoRobin Appelman2014-01-131-2/+2
|
* Add a FileInfo class which holds all info of a file and return that from ↵Robin Appelman2014-01-131-0/+149
getFileInfo, getDirectoryContent and search