summaryrefslogtreecommitdiffstats
path: root/modules-available/sysconfig/hooks/locations-column.inc.php
blob: 8042b51c9adb2afb567f88d140ca0b6642b09a70 (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
46
47
48
49
50
51
52
53
54
55
56
57
<?php

if (!User::hasPermission('.sysconfig.config.*') || !Module::isAvailable('sysconfig'))
	return null;

class SysconfigLocationColumn extends AbstractLocationColumn
{

	private $lookup = [];

	public function __construct()
	{
		$confs = SysConfig::getAll();
		foreach ($confs as $conf) {
			if (!isset($conf['locs']) || strlen($conf['locs']) === 0)
				continue;
			$confLocs = explode(',', $conf['locs']);
			foreach ($confLocs as $locId) {
				$this->lookup[$locId] = $conf['title'];
			}
		}
	}

	public function getColumnHtml(int $locationId): string
	{
		return htmlspecialchars($this->lookup[$locationId] ?? '');
	}

	public function getEditUrl(int $locationId): string
	{
		if (!User::hasPermission('.sysconfig.config.assign', $locationId))
			return '';
		return '?do=sysconfig&locationid=' . $locationId;
	}

	public function header(): string
	{
		return Dictionary::translateFileModule('sysconfig', 'module', 'location-column-header');
	}

	public function priority(): int
	{
		return 2000;
	}

	public function propagateColumn(): bool
	{
		return true;
	}

	public function propagateDefaultHtml(): string
	{
		return htmlspecialchars($this->lookup[0] ?? '');
	}
}

return new SysconfigLocationColumn();