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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
<?php /** * @var AutomateWoo\Action $action * @var AutomateWoo\Workflow $workflow * @var int $action_number * @var $fill_fields (optional) */
defined( 'ABSPATH' ) || exit;
if ( ! $action || ! $action_number ) { return; }
// default to false if ( ! isset( $fill_fields ) ) { $fill_fields = false; }
if ( $fill_fields ) { $action = $workflow->get_action( $action_number ); }
$fields = $action->get_fields(); $first = true; foreach ( $fields as $field ) :
// add action number to name base $field->set_name_base( "aw_workflow_data[actions][$action_number]" );
if ( $fill_fields ) {
// load dynamic options before value is set and field is rendered if ( $field->get_type() === 'select' ) {
/** @var $field AutomateWoo\Fields\Select */ if ( $field->has_dynamic_options() ) { $options = $action->get_dynamic_field_options( $field->get_name() ); $field->set_options( $options ); } }
$value = $action->get_option_raw( $field->get_name() ); } else { $value = ''; } ?>
<tr class="automatewoo-table__row" data-name="<?php echo esc_attr( $field->get_name() ); ?>" data-type="<?php echo esc_attr( $field->get_type() ); ?>" data-required="<?php echo (int) $field->get_required(); ?> ">
<td class="automatewoo-table__col automatewoo-table__col--label">
<?php if ( $first ) { $action->check_requirements(); }
AutomateWoo\Admin::help_tip( $field->get_description() ); ?>
<label><?php echo esc_html( $field->get_title() ); ?> <?php if ( $field->get_required() ) : ?> <span class="required">*</span> <?php endif; ?> </label>
</td>
<td class="automatewoo-table__col automatewoo-table__col--field automatewoo-field-wrap"> <?php $field->render( $value ); ?> </td> </tr>
<?php $first = false; endforeach;
|