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
80
81
|
<?php ! defined( 'ABSPATH' ) && exit(); ?><script type="text/ng-template" id="field-type-radio-template"> <?php /** * Fires before radio field content. * * @since 4.0.0 */ do_action( 'totalpoll/actions/before/admin/editor/fields/type/radio', $this ); ?> <div class="totalpoll-tab-content active" tab="editor>form>{{$ctrl.prefix('basic','>')}}"> <?php /** * Fires before radio field basic tab content. * * @since 4.0.0 */ do_action( 'totalpoll/actions/before/admin/editor/fields/type/radio/basic', $this ); ?> <div class="totalpoll-settings-item" ng-include="'field-basic-label-template'"></div> <div class="totalpoll-settings-item" ng-include="'field-basic-name-template'"></div> <div class="totalpoll-settings-item" ng-include="'field-basic-options-template'"></div> <div class="totalpoll-settings-item" ng-include="'field-basic-default-value-template'"></div> <?php /** * Fires after radio field basic tab content. * * @since 4.0.0 */ do_action( 'totalpoll/actions/after/admin/editor/fields/type/radio/basic', $this ); ?> </div> <div class="totalpoll-tab-content" tab="editor>form>{{$ctrl.prefix('validations','>')}}"> <?php /** * Fires before radio field validations tab content. * * @since 4.0.0 */ do_action( 'totalpoll/actions/before/admin/editor/fields/type/radio/validations', $this ); ?> <div class="totalpoll-settings-item" ng-include="'field-validations-filled-template'"></div> <?php /** * Fires after radio field validations tab content. * * @since 4.0.0 */ do_action( 'totalpoll/actions/after/admin/editor/fields/type/radio/validations', $this ); ?> </div> <div class="totalpoll-tab-content" tab="editor>form>{{$ctrl.prefix('html','>')}}"> <?php /** * Fires before radio field html tab content. * * @since 4.0.0 */ do_action( 'totalpoll/actions/before/admin/editor/fields/type/radio/html', $this ); ?> <div class="totalpoll-settings-item" ng-include="'field-html-css-class-template'"></div> <div class="totalpoll-settings-item" ng-include="'field-html-template-template'"></div> <?php /** * Fires after radio field html tab content. * * @since 4.0.0 */ do_action( 'totalpoll/actions/after/admin/editor/fields/type/radio/html', $this ); ?> </div> <?php /** * Fires after radio field content. * * @since 4.0.0 */ do_action( 'totalpoll/actions/after/admin/editor/fields/type/radio', $this ); ?> </script>
|