@@ -27,7 +27,8 @@ like this:
27
27
workflows :
28
28
blog_publishing :
29
29
type : ' workflow' # or 'state_machine'
30
- audit_trail : ' enabled'
30
+ audit_trail :
31
+ enabled : true
31
32
marking_store :
32
33
type : ' multiple_state' # or 'single_state'
33
34
arguments :
@@ -63,7 +64,9 @@ like this:
63
64
>
64
65
65
66
<framework : config >
66
- <framework : workflow name =" blog_publishing" type =" workflow" audit-trail =" enabled" >
67
+ <framework : workflow name =" blog_publishing" type =" workflow" >
68
+ <framework : audit_trail enabled =" true" />
69
+
67
70
<framework : marking-store type =" single_state" >
68
71
<framework : argument >currentPlace</framework : argument >
69
72
</framework : marking-store >
@@ -107,7 +110,9 @@ like this:
107
110
'workflows' => array(
108
111
'blog_publishing' => array(
109
112
'type' => 'workflow', // or 'state_machine'
110
- 'audit_trail' => 'enabled',
113
+ 'audit_trail' => array(
114
+ 'enabled' => true
115
+ ),
111
116
'marking_store' => array(
112
117
'type' => 'multiple_state', // or 'single_state'
113
118
'arguments' => array('currentPlace')
@@ -161,7 +166,7 @@ like this:
161
166
162
167
.. tip ::
163
168
164
- Setting the ``audit_trail `` option to ``enabled `` makes the application
169
+ Setting the ``audit_trail.enabled `` option to ``true `` makes the application
165
170
generate detailed log messages for the workflow activity.
166
171
167
172
.. versionadded :: 3.3
0 commit comments