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
|
<?php ! defined( 'ABSPATH' ) && exit(); ?><div class="totalpoll-settings-item "> <p class="totalpoll-feature-tip" ng-non-bindable><?php _e( 'Poll title: {{title}}', 'totalpoll' ); ?></p> <p class="totalpoll-feature-tip" ng-non-bindable><?php _e( 'Choices: {{choices}}', 'totalpoll' ); ?></p> <p class="totalpoll-feature-tip" ng-non-bindable><?php _e( 'User IP: {{ip}}', 'totalpoll' ); ?></p> <p class="totalpoll-feature-tip" ng-non-bindable><?php _e( 'User browser: {{browser}}', 'totalpoll' ); ?></p> <p class="totalpoll-feature-tip" ng-non-bindable><?php _e( 'Vote date: {{date}}', 'totalpoll' ); ?></p>
<div class="totalpoll-settings-field"> <label class="totalpoll-settings-field-label"> <?php _e( 'Title', 'totalpoll' ); ?> </label> <input type="text" class="totalpoll-settings-field-input widefat" ng-model="$ctrl.options.notifications.title" > </div> <div class="totalpoll-settings-field"> <label class="totalpoll-settings-field-label"> <?php _e( 'Plain text body', 'totalpoll' ); ?> </label> <textarea type="text" class="totalpoll-settings-field-input widefat" ng-model="$ctrl.options.notifications.body" ></textarea> </div> <div class="totalpoll-settings-field"> <label class="totalpoll-settings-field-label"> <?php _e( 'HTML template', 'totalpoll' ); ?> </label> <textarea type="text" class="totalpoll-settings-field-input widefat" ng-model="$ctrl.options.notifications.template" rows="10" ></textarea> </div> </div>
|