diff options
author | Brice Maron <brice@bmaron.net> | 2011-10-29 10:07:01 +0200 |
---|---|---|
committer | Brice Maron <brice@bmaron.net> | 2011-10-29 10:07:01 +0200 |
commit | a21908cf18fe139976a4eec494c0dce037c08841 (patch) | |
tree | fad2afc7aa7107b616a0df0e4d80527d6959bbc0 /apps/admin_dependencies_chk/appinfo | |
parent | a809fe9a048d53c23bb962da5f1b133f4aac82b8 (diff) | |
download | nextcloud-server-a21908cf18fe139976a4eec494c0dce037c08841.tar.gz nextcloud-server-a21908cf18fe139976a4eec494c0dce037c08841.zip |
Change name and fix a typo
Diffstat (limited to 'apps/admin_dependencies_chk/appinfo')
-rw-r--r-- | apps/admin_dependencies_chk/appinfo/app.php | 9 | ||||
-rw-r--r-- | apps/admin_dependencies_chk/appinfo/info.xml | 11 |
2 files changed, 20 insertions, 0 deletions
diff --git a/apps/admin_dependencies_chk/appinfo/app.php b/apps/admin_dependencies_chk/appinfo/app.php new file mode 100644 index 00000000000..e2169b5dd77 --- /dev/null +++ b/apps/admin_dependencies_chk/appinfo/app.php @@ -0,0 +1,9 @@ +<?php +$l=new OC_L10N('admin_dependencies_chk'); + +OC_App::register( array( + 'order' => 14, + 'id' => 'admin_dependencies_chk', + 'name' => 'Owncloud Install Info' )); + +OC_APP::registerAdmin('admin_dependencies_chk','settings'); diff --git a/apps/admin_dependencies_chk/appinfo/info.xml b/apps/admin_dependencies_chk/appinfo/info.xml new file mode 100644 index 00000000000..7216a1ee862 --- /dev/null +++ b/apps/admin_dependencies_chk/appinfo/info.xml @@ -0,0 +1,11 @@ +<?xml version="1.0"?> +<info> + <id>admin_dependencies_chk</id> + <name>Owncloud dependencies info</name> + <version>0.01</version> + <licence>MIT</licence> + <author>Brice Maron (eMerzh)</author> + <require>2</require> + <description>Display OwnCloud's dependencies informations (missings modules, ...)</description> + <default_enable/> +</info> |