first commit

This commit is contained in:
dwindown
2025-08-21 20:39:34 +07:00
commit 58c1497171
576 changed files with 177044 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<?php
/**
* @var $field
* @var $field_id
* @var $field_value
* @var $field_label
* @var $field_name
* @var $field_data
* @var $section_name
*
*/
?>
<wpcfto_multiselect v-bind:fields="<?php echo esc_attr($field); ?>"
v-bind:field_label="<?php echo esc_attr($field_label); ?>"
v-bind:field_name="'<?php echo esc_attr($field_name); ?>'"
v-bind:field_id="'<?php echo esc_attr($field_id); ?>'"
v-bind:field_value="<?php echo esc_attr($field_value); ?>"
v-bind:field_options="<?php echo esc_attr($field); ?>['options']"
v-bind:field_data='<?php echo str_replace("'", "", json_encode($field_data)); ?>'
@wpcfto-get-value="$set(<?php echo esc_attr($field) ?>, 'value', $event)">
</wpcfto_multiselect>
<input type="hidden"
:style="{'width' : '100%'}"
name="<?php echo esc_attr($field_name); ?>"
v-bind:id="'<?php echo esc_attr($field_id); ?>'"
v-model="JSON.stringify(<?php echo esc_attr(wp_unslash($field_value)); ?>)"/>