File tree 4 files changed +11
-8
lines changed
4 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 9
9
use Icinga \Module \Kubernetes \Model \ConfigMap ;
10
10
use Icinga \Module \Kubernetes \Web \ConfigMapList ;
11
11
use Icinga \Module \Kubernetes \Web \ListController ;
12
+ use Icinga \Module \Kubernetes \Web \ViewModeSwitcher ;
12
13
use ipl \Orm \Query ;
13
14
14
15
class ConfigmapsController extends ListController
@@ -44,6 +45,6 @@ protected function getPermission(): string
44
45
45
46
protected function getIgnoredViewModes (): array
46
47
{
47
- return [' common ' , ' detailed ' ];
48
+ return [ViewModeSwitcher:: VIEW_MODE_COMMON , ViewModeSwitcher:: VIEW_MODE_DETAILED ];
48
49
}
49
50
}
Original file line number Diff line number Diff line change 9
9
use Icinga \Module \Kubernetes \Model \Event ;
10
10
use Icinga \Module \Kubernetes \Web \EventList ;
11
11
use Icinga \Module \Kubernetes \Web \ListController ;
12
+ use Icinga \Module \Kubernetes \Web \ViewModeSwitcher ;
12
13
use ipl \Orm \Query ;
13
14
use ipl \Stdlib \Filter ;
14
15
@@ -54,6 +55,6 @@ protected function getPermission(): string
54
55
55
56
protected function getIgnoredViewModes (): array
56
57
{
57
- return [' detailed ' ];
58
+ return [ViewModeSwitcher:: VIEW_MODE_DETAILED ];
58
59
}
59
60
}
Original file line number Diff line number Diff line change 9
9
use Icinga \Module \Kubernetes \Model \Secret ;
10
10
use Icinga \Module \Kubernetes \Web \ListController ;
11
11
use Icinga \Module \Kubernetes \Web \SecretList ;
12
+ use Icinga \Module \Kubernetes \Web \ViewModeSwitcher ;
12
13
use ipl \Orm \Query ;
13
14
14
15
class SecretsController extends ListController
@@ -44,6 +45,6 @@ protected function getPermission(): string
44
45
45
46
protected function getIgnoredViewModes (): array
46
47
{
47
- return [' detailed ' ];
48
+ return [ViewModeSwitcher:: VIEW_MODE_DETAILED ];
48
49
}
49
50
}
Original file line number Diff line number Diff line change @@ -31,17 +31,17 @@ class ViewModeSwitcher extends Form
31
31
public const VIEW_MODE_DETAILED = 'detailed ' ;
32
32
33
33
/** @var string Default view mode */
34
- public const DEFAULT_VIEW_MODE = ' common ' ;
34
+ public const DEFAULT_VIEW_MODE = self :: VIEW_MODE_COMMON ;
35
35
36
36
/** @var string Default view mode param */
37
37
public const DEFAULT_VIEW_MODE_PARAM = 'view ' ;
38
38
39
39
/** @var array View mode-icon pairs */
40
40
public static $ viewModes = [
41
- ' minimal ' => 'minimal ' ,
42
- ' common ' => 'default ' ,
43
- ' detailed ' => 'detailed ' ,
44
- 'tabular ' => 'tabular '
41
+ self :: VIEW_MODE_MINIMAL => 'minimal ' ,
42
+ self :: VIEW_MODE_COMMON => 'default ' ,
43
+ self :: VIEW_MODE_DETAILED => 'detailed ' ,
44
+ 'tabular ' => 'tabular '
45
45
];
46
46
47
47
/** @var string */
You can’t perform that action at this time.
0 commit comments