summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing_log/appinfo/app.php
diff options
context:
space:
mode:
authorFrank Karlitschek <frank@owncloud.org>2012-08-26 17:30:07 +0200
committerFrank Karlitschek <frank@owncloud.org>2012-08-26 17:30:07 +0200
commit72e9a2ce57ee88503db83614cec5ccda71f0b58e (patch)
tree8bc301ca22d9ca08ea54426bcb61f62bd1c1cb75 /apps/files_sharing_log/appinfo/app.php
parent32bad688bdb4fea55eba9d4255fc55f1c60a0aca (diff)
downloadnextcloud-server-72e9a2ce57ee88503db83614cec5ccda71f0b58e.tar.gz
nextcloud-server-72e9a2ce57ee88503db83614cec5ccda71f0b58e.zip
moved to apps repository
Diffstat (limited to 'apps/files_sharing_log/appinfo/app.php')
-rw-r--r--apps/files_sharing_log/appinfo/app.php22
1 files changed, 0 insertions, 22 deletions
diff --git a/apps/files_sharing_log/appinfo/app.php b/apps/files_sharing_log/appinfo/app.php
deleted file mode 100644
index 23cae61fbf4..00000000000
--- a/apps/files_sharing_log/appinfo/app.php
+++ /dev/null
@@ -1,22 +0,0 @@
-<?php
-/**
- * Copyright (c) 2012 Bart Visscher <bartv@thisnet.nl>
- * This file is licensed under the Affero General Public License version 3 or
- * later.
- * See the COPYING-README file.
- */
-
-OC::$CLASSPATH['OC_Files_Sharing_Log'] = 'apps/files_sharing_log/log.php';
-
-$l=new OC_L10N('files_sharing_log');
-OCP\App::addNavigationEntry( array(
- 'id' => 'files_sharing_log_index',
- 'order' => 5,
- 'href' => OCP\Util::linkTo( 'files_sharing_log', 'index.php' ),
- 'icon' => OCP\Util::imagePath( 'files_sharing_log', 'icon.png' ),
- 'name' => $l->t('Shared files log'))
-);
-
-OCP\Util::connectHook('OC_Filestorage_Shared', 'fopen', 'OC_Files_Sharing_Log', 'fopen');
-OCP\Util::connectHook('OC_Filestorage_Shared', 'file_get_contents', 'OC_Files_Sharing_Log', 'file_get_contents');
-OCP\Util::connectHook('OC_Filestorage_Shared', 'file_put_contents', 'OC_Files_Sharing_Log', 'file_put_contents');