PluginProbe
weForms – Easy Drag & Drop Contact Form Builder For WordPress / 1.6.1
weForms – Easy Drag & Drop Contact Form Builder For WordPress v1.6.1
1.6.7 1.6.8 1.6.9 1.6.12 1.6.13 1.6.14 1.6.15 1.6.16 1.6.17 1.6.18 1.6.19 1.6.2 1.6.20 1.6.21 1.6.22 1.6.23 1.6.24 1.6.25 1.6.26 1.6.27 1.6.28 1.6.3 1.6.4 1.6.5 1.6.6 All 74 releases
weforms / assets / components / dynamic-field / template.php

template.php in weForms – Easy Drag & Drop Contact Form Builder For WordPress 1.6.1, at assets/components/dynamic-field/template.php

30 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <div>
2
3 <div class="panel-field-opt panel-field-opt-text">
4 <label>
5 <?php _e( 'Dynamic value population', 'weforms' ); ?>
6 <help-text text="<?php _e( 'Field value or options can be populated dynamically through filter hook or query string', 'weforms' ); ?>"></help-text>
7 </label>
8
9 <ul>
10 <li>
11 <label>
12 <input type="checkbox" value="yes" v-model="dynamic.status"> <?php _e( 'Allow field to be populated dynamically', 'weforms' ); ?>
13 </label>
14 </li>
15 </ul>
16 </div>
17
18
19 <template v-if="dynamic.status">
20
21 <div class="panel-field-opt panel-field-opt-text"><label>
22 <?php _e( 'Parameter Name', 'weforms' ); ?>
23 <help-text text="<?php _e( 'Enter a Parameter Name, using that the field value can be populated through filter hook or query string', 'weforms' ); ?>"></help-text>
24 <input type="text" v-model="dynamic.param_name">
25 </label>
26 </div>
27 </template>
28
29 </div>
30