mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
fdbd899766
- Remaining Developer Guides and Upgrading - SilverStripe in a namespace or api has not been change - To keep PRs easier no formatting was changed Update merge conflics with two files Update Silverstripe Ltd, Silverstripe Cloud and Silverstripe CMS Silverstripe CMS Ltd > Silverstripe Ltd Silverstripe CMS Platform > Silverstripe Cloud Silverstripe CMS Framework > Silverstripe CMS Resolve merge conflict Remove Framework from Silverstripe CMS Framework - 3 files Change SilverStripe CMS to Silverstripe CMS
1.2 KiB
1.2 KiB
title | summary | introduction | icon |
---|---|---|---|
Files | Upload, manage and manipulate files and images. | Upload, manage and manipulate files and images. | folder-open |
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 CMS 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]