aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Widget/Dirsort.php
diff options
context:
space:
mode:
Diffstat (limited to 'Zotlabs/Widget/Dirsort.php')
-rw-r--r--Zotlabs/Widget/Dirsort.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/Zotlabs/Widget/Dirsort.php b/Zotlabs/Widget/Dirsort.php
new file mode 100644
index 000000000..e75a00e50
--- /dev/null
+++ b/Zotlabs/Widget/Dirsort.php
@@ -0,0 +1,11 @@
+<?php
+
+namespace Zotlabs\Widget;
+
+require_once('include/dir_fns.php');
+
+class Dirsort {
+ function widget($arr) {
+ return dir_sort_links();
+ }
+}