aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Apporder.php
blob: 956548d1f578a0aaf0d1d33728af05d38c8b9aef (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
40
41
42
43
44
45
<?php

namespace Zotlabs\Module;

use \Zotlabs\Lib as Zlib;

class Apporder extends \Zotlabs\Web\Controller {

	function post() {

	}

	function get() {

		if(! local_channel())
			return;

		nav_set_selected('Order Apps');

		$syslist = array();
		$list = Zlib\Apps::app_list(local_channel(), false, 'nav_featured_app');
		if($list) {
			foreach($list as $li) {
				$syslist[] = Zlib\Apps::app_encode($li);
			}
		}
		Zlib\Apps::translate_system_apps($syslist);

		usort($syslist,'Zotlabs\\Lib\\Apps::app_name_compare');

		$syslist = Zlib\Apps::app_order(local_channel(),$syslist);

		foreach($syslist as $app) {
			$nav_apps[] = Zlib\Apps::app_render($app,'nav-order');
		}

		return replace_macros(get_markup_template('apporder.tpl'),
			[
				'$header' => t('Change Order of Navigation Apps'),
				'$desc' => t('Use arrows to move the corresponding app up or down in the display list'),
				'$nav_apps' => $nav_apps
			]
		);
	}
}