]> git.datanom.net - omvzfs.git/blob - src/VdevType.php
Minor change to clarify shared folder creation.
[omvzfs.git] / src / VdevType.php
1 <?php
2
3 /**
4 * OMVModuleZFSVdevType class
5 *
6 * @author Michael Rasmussen
7 * @version 0.1
8 * @copyright Michael Rasmussen <mir@datanom.net>
9 * @abstract
10 */
11 abstract class OMVModuleZFSVdevType {
12
13 /**
14 * @var OMVMODULEZFSPLAIN
15 * @access public
16 */
17 const OMVMODULEZFSPLAIN = 0;
18
19 /**
20 * @var OMVMODULEZFSMIRROR
21 * @access public
22 */
23 const OMVMODULEZFSMIRROR = 1;
24
25 /**
26 * @var OMVMODULEZFSRAIDZ1
27 * @access public
28 */
29 const OMVMODULEZFSRAIDZ1 = 2;
30
31 /**
32 * @var OMVMODULEZFSRAIDZ2
33 * @access public
34 */
35 const OMVMODULEZFSRAIDZ2 = 3;
36
37 /**
38 * @var OMVMODULEZFSRAIDZ3
39 * @access public
40 */
41 const OMVMODULEZFSRAIDZ3 = 4;
42
43 }
44
45 ?>
This page took 0.058031 seconds and 6 git commands to generate.