mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
56b49dad34
* DOCS Improve high level file documentation Fixes https://github.com/silverstripe/silverstripe-assets/issues/62 * Updates based on feedback
1.1 KiB
1.1 KiB
title: Files summary: Upload, manage and manipulate files and images. introduction: Upload, manage and manipulate files and images.
Files
Introduction
File management and abstraction is provided by the silverstripe/assets. This provides the basis for the storage of all non-static files and resources usable by a SilverStripe web application.
By default the [api:SilverStripe\Assets\File] has these characteristics:
- A default permission model based on folder hierarchy.
- Versioning of files, including the ability to draft modifications to files and subsequently publish them.
- Physical protection of both unpublished and secured files, allowing restricted access as needed.
- An abstract storage based on the flysystem library, which can be substituted for any other backend.
- Can be embedded into any HTML field via shortcodes.
Read more
[CHILDREN]