/home/vianto5/heredit.mx/wp-content/plugins/wpforms-webhooks/views/settings
NameSizeModeActions
block.php14630644editdlrm
fields-mapping.php42250644editdlrm
section.php8010644editdlrm
Edit: /home/vianto5/heredit.mx/wp-content/plugins/wpforms-webhooks/views/settings/fields-mapping.php (4225B)

$value ) : $flds_name = [ 'source' => '', 'custom' => '', 'secure' => '', ]; $extra_class = ''; $is_custom = false; $key = ( $value !== false ) ? Formatting::sanitize_header_name( $key ) : ''; if ( ! wpforms_is_empty_string( $key ) ) { $is_custom = ( 0 === strpos( $key, 'custom_' ) && is_array( $value ) ); if ( $is_custom ) { $key = substr_replace( $key, '', 0, 7 ); $value['value'] = ! empty( $value['secure'] ) ? Crypto::decrypt( $value['value'] ) : $value['value']; $flds_name['custom'] = sprintf( '%1$s[custom_%2$s][value]', $args['name'], $key ); $flds_name['secure'] = sprintf( '%1$s[custom_%2$s][secure]', $args['name'], $key ); $extra_class = ' field-is-custom-value'; } else { $flds_name['source'] = sprintf( '%1$s[%2$s]', $args['name'], $key ); } } $is_secure_checked = $is_custom && $value['value'] !== false && ! empty( $value['secure'] ); ?>
>