File tree 2 files changed +48
-0
lines changed
2 files changed +48
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,29 @@ class ActionButton extends Field
14
14
*/
15
15
public $ component = 'action-button ' ;
16
16
17
+
18
+ /**
19
+ * Indicates if the element should be shown on the update view.
20
+ *
21
+ * @var bool
22
+ */
23
+ public $ showOnUpdate = false ;
24
+
25
+
26
+ /**
27
+ * Indicates if the element should be shown on the detail view.
28
+ *
29
+ * @var bool
30
+ */
31
+ public $ showOnDetail = false ;
32
+
33
+
34
+ /**
35
+ * Indicates if the element should be shown on the creation view.
36
+ *
37
+ * @var bool
38
+ */
39
+ public $ showOnCreation = false ;
17
40
18
41
/**
19
42
* @param Action $action
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ class ActionButtons extends Field
13
13
*/
14
14
public $ component = 'action-buttons ' ;
15
15
16
+
16
17
/**
17
18
* The text alignment for the field's text in tables.
18
19
*
@@ -21,6 +22,30 @@ class ActionButtons extends Field
21
22
public $ textAlign = 'center ' ;
22
23
23
24
25
+ /**
26
+ * Indicates if the element should be shown on the update view.
27
+ *
28
+ * @var bool
29
+ */
30
+ public $ showOnUpdate = false ;
31
+
32
+
33
+ /**
34
+ * Indicates if the element should be shown on the detail view.
35
+ *
36
+ * @var bool
37
+ */
38
+ public $ showOnDetail = false ;
39
+
40
+
41
+ /**
42
+ * Indicates if the element should be shown on the creation view.
43
+ *
44
+ * @var bool
45
+ */
46
+ public $ showOnCreation = false ;
47
+
48
+
24
49
/**
25
50
* @param array<ActionButton> $collection
26
51
* @return $this
You can’t perform that action at this time.
0 commit comments