silverstripe-framework/docs/en/02_Developer_Guides/14_Files/index.md
Aaron Carlino 6888901468
NEW: Update docs to be compliant with Gatsby site (#9314)
* First cut

* Temporarily disable composer.json for netlify build

* POC

* New recursive directory query, various refinements

* Fix flexbox

* new styled components plugin

* Apply frontmatter delimiters

* Mobile styles, animation

* Search

* Redesign, clean up

* Nuke the cache, try again

* fix file casing

* Remove production env file

* ID headers

* Move app to new repo

* Add frontmatter universally

* Hide children changelogs

* Add how to title

* New callout tags

* Revert inline code block change

* Replace note callouts

* Fix icons

* Repalce images

* Fix icon

* Fix image links

* Use proper SQL icon
2019-11-18 17:58:33 +13:00

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 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]

API Documentation