mirror of
https://github.com/nextcloud/documentation.git
synced 2026-01-03 02:09:45 +07:00
integrated apps.rst into the tutorial
This commit is contained in:
@@ -1,22 +0,0 @@
|
||||
Apps Development
|
||||
================
|
||||
|
||||
Supported App Types
|
||||
-------------------
|
||||
|
||||
ownCloud allows to specify three kind of "types" in the info.xml of a app. The
|
||||
type doesn't have to be specified if the app doesn't match any of them.
|
||||
|
||||
Currently supported "types":
|
||||
|
||||
**prelogin**
|
||||
apps which needs to load on the login page
|
||||
|
||||
**filesystem**
|
||||
apps which provides filesystem functionality (e.g. files sharing app)
|
||||
|
||||
**authentication**
|
||||
apps which provided authentication backends
|
||||
|
||||
**logging**
|
||||
apps which implement a logging system
|
||||
@@ -16,7 +16,6 @@ Contents
|
||||
security
|
||||
vcategories
|
||||
routing
|
||||
apps
|
||||
guidelines
|
||||
codereviews
|
||||
kanban
|
||||
|
||||
@@ -126,8 +126,26 @@ The second place where app specifc information is stored is in :file:`appinfo/in
|
||||
<licence>AGPL</licence>
|
||||
<author>Your Name</author>
|
||||
<require>4</require>
|
||||
<standalone/>
|
||||
<types>
|
||||
<filesystem/>
|
||||
</types>
|
||||
<shipped>true</shipped>
|
||||
<default_enable/>
|
||||
</info>
|
||||
|
||||
ownCloud allows to specify four kind of "types" in the file:`appinfo/info.xml` of a app. The
|
||||
type doesn't have to be specified if the app doesn't match any of them.
|
||||
|
||||
Currently supported "types":
|
||||
|
||||
* **prelogin**: apps which needs to load on the login page
|
||||
|
||||
* **filesystem**: apps which provides filesystem functionality (e.g. files sharing app)
|
||||
|
||||
* **authentication**: apps which provided authentication backends
|
||||
|
||||
* **logging**: apps which implement a logging system
|
||||
|
||||
Classloader
|
||||
-----------
|
||||
|
||||
Reference in New Issue
Block a user