summaryrefslogtreecommitdiffstats
path: root/modules-available/dnbd3/inc/dnbd3.inc.php
blob: 83baffbf4454252ecb812e645a5c8b16f1b862d7 (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
<?php

class Dnbd3 {

	const PROP_ENABLED = 'dnbd3.enabled';
	const PROP_NFS_FALLBACK = 'dnbd3.nfs-fallback';

	public static function isEnabled(): bool
	{
		return (bool)Property::get(self::PROP_ENABLED, 0);
	}

	public static function setEnabled($bool)
	{
		Property::set(self::PROP_ENABLED, $bool ? 1 : 0);
		Trigger::mount(false, true);
	}

	public static function hasNfsFallback(): bool
	{
		return (bool)Property::get(self::PROP_NFS_FALLBACK, 0);
	}

	public static function setNfsFallback($bool)
	{
		Property::set(self::PROP_NFS_FALLBACK, $bool ? 1 : 0);
	}

}