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
|
<?php ! defined( 'ABSPATH' ) && exit(); ?><script type="text/ng-template" id="choice-type-image-template"> <?php /** * Fires before image choice content. * * @since 4.0.0 */ do_action( 'totalpoll/actions/before/admin/editor/choices/type/image', $this ); ?> <div class="totalpoll-image-input"> <div class="totalpoll-image-input-preview"> <img ng-if="$ctrl.item.image.thumbnail" ng-src="{{$ctrl.item.image.thumbnail}}" class="totalpoll-image-input-preview-thumbnail"> <img ng-if="$ctrl.item.image.full" ng-src="{{$ctrl.item.image.full}}" class="totalpoll-image-input-preview-full"> </div> <div class="totalpoll-image-input-details"> <div class="totalpoll-input-group"> <label for="{{$ctrl.prefix('label')}}"> <?php _e( 'Label', 'totalpoll' ); ?> </label> <input type="text" placeholder="<?php _e( 'Choice label', 'totalpoll' ); ?>" name="{{$ctrl.prefix('label')}}" id="{{$ctrl.prefix('label')}}" ng-model="$ctrl.item.label"> </div> <div class="totalpoll-input-group with-button"> <label for="{{$ctrl.prefix('full-image')}}"> <?php _e( 'Image URL', 'totalpoll' ); ?> </label> <input type="text" placeholder="<?php _e( 'Full size image URL', 'totalpoll' ); ?>" name="{{$ctrl.prefix('full-image')}}" id="{{$ctrl.prefix('full-image')}}" ng-model="$ctrl.item.image.full" ng-model-options="{ debounce: 500 }"> <button type="button" class="button" ng-click="$ctrl.upload()"> <?php _e( 'Upload', 'totalpoll' ); ?> </button> </div> <div class="totalpoll-input-group"> <label for="{{$ctrl.prefix('thumbnail-image')}}"> <?php _e( 'Thumbnail URL', 'totalpoll' ); ?> </label> <input type="text" placeholder="<?php _e( 'Thumbnail image URL', 'totalpoll' ); ?>" name="{{$ctrl.prefix('thumbnail-image')}}" id="{{$ctrl.prefix('thumbnail-image')}}" ng-model="$ctrl.item.image.thumbnail" ng-model-options="{ debounce: 500 }"> <div class="totalpoll-input-group-suggestions" ng-if="$ctrl.item.image.sizes"> <?php _e( 'Available sizes', 'totalpoll' ); ?> <a class="totalpoll-input-group-suggestions-item" ng-class="{'active': $ctrl.item.image.thumbnail === size.url}" ng-repeat="(name, size) in $ctrl.item.image.sizes" ng-click="$ctrl.item.image.thumbnail = size.url">{{name}}</a> </div> </div> </div> </div> <?php /** * Fires after image choice content. * * @since 4.0.0 */ do_action( 'totalpoll/actions/after/admin/editor/choices/type/image', $this ); ?> </script>
|