Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2016-07-22 16:20:51 +0300
committerRobin Appelman <robin@icewind.nl>2016-07-22 16:20:51 +0300
commit2e3114cc28b44468d449838c3b75ed7e4e5decea (patch)
tree2b62a1aca17e8c996a31565f484ae7d0b1f55ea8 /apps/files/recentlist.php
parentb94ff97a77be3947e62373cd4c6b75d7dfe5e5cc (diff)
Add recent file listing
Diffstat (limited to 'apps/files/recentlist.php')
-rw-r--r--apps/files/recentlist.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/files/recentlist.php b/apps/files/recentlist.php
new file mode 100644
index 00000000000..1976be4894a
--- /dev/null
+++ b/apps/files/recentlist.php
@@ -0,0 +1,7 @@
+<?php
+// Check if we are a user
+OCP\User::checkLoggedIn();
+
+$tmpl = new OCP\Template('files', 'recentlist', '');
+
+$tmpl->printPage();