Changeset 1571202
- Timestamp:
- 01/09/2017 02:16:15 PM (9 years ago)
- Location:
- vd-ratings/trunk
- Files:
-
- 2 edited
-
templates/settings.php (modified) (2 diffs)
-
vd_ratings.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vd-ratings/trunk/templates/settings.php
r1569251 r1571202 6 6 <table class="form-table"> 7 7 <tr valign="top"> 8 <th scope="row"><label for="_vd_user_login"><?php echo esc_html__('Only registered user can rate','vd_rate'); ?></label></th>8 <th scope="row"><label for="_vd_user_login"><?php echo __('Only registered user can rate','vd_rate'); ?></label></th> 9 9 <td> 10 10 <input type="checkbox" name="_vd_user_login" id="_vd_user_login" value="1" <?php checked(1,get_option('_vd_user_login')); ?> /> … … 12 12 </tr> 13 13 <tr valign="top"> 14 <th scope="row"><label for="select_color_txt"><?php echo esc_html__('Rating Color:','vd_rate'); ?></label></th>14 <th scope="row"><label for="select_color_txt"><?php echo __('Rating Color:','vd_rate'); ?></label></th> 15 15 <td> 16 16 <select class="select_color" id="select_color" onchange="get_val(this.value);"> 17 <option value="#ff0000"><?php echo esc_html__('Red','vd_rate'); ?></option>18 <option value="#0000ff"><?php echo esc_html__('Blue','vd_rate'); ?></option>19 <option value="#00ff00"><?php echo esc_html__('Green','vd_rate'); ?></option>20 <option value="$ffff00"><?php echo esc_html__('Yellow','vd_rate'); ?></option>17 <option value="#ff0000"><?php echo __('Red','vd_rate'); ?></option> 18 <option value="#0000ff"><?php echo __('Blue','vd_rate'); ?></option> 19 <option value="#00ff00"><?php echo __('Green','vd_rate'); ?></option> 20 <option value="$ffff00"><?php echo __('Yellow','vd_rate'); ?></option> 21 21 </select> 22 22 <input type="text" name="_vd_rate_color" id="_vd_rate_color" value="<?php echo esc_attr( get_option('_vd_rate_color') ); ?>" /> <?php echo esc_html__('you can add hexacode directly here.','vd_rate'); ?> -
vd-ratings/trunk/vd_ratings.php
r1571199 r1571202 4 4 Plugin URI: vrajeshdave.wordpress.com 5 5 Description: by using this plugin ,you can rate your post,page,and anything..! 6 Version: 1. 16 Version: 1.2 7 7 Author: Vrajesh Dave 8 8 Author URI: vrajeshdave.wordpress.com … … 17 17 protected $tag = 'vd_ratings'; 18 18 protected $name = 'Rating'; 19 protected $version = '1. 1';19 protected $version = '1.2'; 20 20 public function __construct() 21 21 {
Note: See TracChangeset
for help on using the changeset viewer.