mirror of
https://github.com/nextcloud/documentation.git
synced 2026-01-03 18:26:42 +07:00
17 lines
625 B
ReStructuredText
17 lines
625 B
ReStructuredText
App Tutorial (App Framework)
|
|
============================
|
|
This tutorial contains the MVC approach to write an app. The benefits of this approach are:
|
|
|
|
* Highest authentication level and security checks are enforced by default and have to explicitely be turned off
|
|
* Possiblity to use Twig templates which escape XSS by default
|
|
* Easy to test: The App Framework allows to unittest the whole app by using :doc:`../general/dependencyinjection`
|
|
* Comes with AngularJS JavaScript code
|
|
* MVC style
|
|
|
|
The disadvantages of this approach are:
|
|
|
|
* App Framework app has to be installed
|
|
* Requires to read more documentation
|
|
* Possible
|
|
|