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

/**
 *   * Name: Directory tags
 *   * Description: Show directory tags in a cloud
 *   * Requires: directory
 */

namespace Zotlabs\Widget;

class Dirtags {

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

}