aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Widget/Dirsort.php
blob: e75a00e505df4737ba3626231dc08c488ddabbb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<?php

namespace Zotlabs\Widget;

require_once('include/dir_fns.php');

class Dirsort {
	function widget($arr) {
		return dir_sort_links();
	}
}