aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Widget/Categories.php
blob: b0eda253b5ed42bd71182e987344a2fab03a65fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php

/**
 *   * Name: Categories
 *   * Description: Display a menu with links to categories
 *   * Requires: channel, articles, cards, cloud
 */

namespace Zotlabs\Widget;

use App;
use Zotlabs\Lib\Apps;

require_once('include/contact_widgets.php');

class Categories {

	function widget($arr) {

		$files = ((array_key_exists('files',$arr) && $arr['files']) ? true : false);

		if(!isset(App::$profile['profile_uid']) || !perm_is_allowed(App::$profile['profile_uid'], get_observer_hash(), 'view_stream')) {
			return '';
		}

		$cat = ((x($_REQUEST, 'cat')) ? htmlspecialchars($_REQUEST['cat'], ENT_COMPAT, 'UTF-8') : '');

		// Discard queries from the current URL, as the template expects a base
		// URL without any queries.
		$base = substr(App::$query_string, 0, strcspn(App::$query_string, '?'));

		if($files) {
			return filecategories_widget($base, $cat);
		}

		return categories_widget($base, $cat);

	}
}