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

namespace Zotlabs\Widget;

require_once('include/dir_fns.php');

class Dirtags {

	function widget($arr) {
		return dir_tagblock(z_root() . '/directory', null);
	}

}