aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Widget/Dirsort.php
blob: 569782bb9910dd28ba2935e3086c90fb19603900 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

/**
 *   * Name: Dirsort
 *   * Description: Various options to provide different vies of the directory
 *   * Requires: directory
 */

namespace Zotlabs\Widget;

use Zotlabs\Lib\Libzotdir;

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