button-config.php
8 years ago
enable-buttons.php
8 years ago
follow-button-settings.php
8 years ago
list.php
8 years ago
onoff-buttons.php
8 years ago
shortcode-templatecode.php
8 years ago
widget.php
8 years ago
enable-buttons.php
22 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Enable Button Template |
| 4 | * |
| 5 | * The template wrapper for the enable button settings. |
| 6 | * |
| 7 | * @package ShareThisFollowButtons |
| 8 | */ |
| 9 | |
| 10 | $option_value = get_option( 'sharethis_inline-follow', true ); |
| 11 | ?> |
| 12 | <div id="inline-follow" class="enable-buttons"> |
| 13 | <label class="share-on"> |
| 14 | <input type="radio" id="sharethis_inline-follow_on" name="sharethis_inline-follow" value="true" <?php echo esc_attr( checked( 'true', $option_value, false ) ); ?>> |
| 15 | <div class="label-text"><?php esc_html_e( 'On', 'sharethis-follow-buttons' ); ?></div> |
| 16 | </label> |
| 17 | <label class="share-off"> |
| 18 | <input type="radio" id="sharethis_inline-follow_off" name="sharethis_inline-follow" value="false" <?php echo esc_attr( checked( 'false', $option_value, false ) ); ?>> |
| 19 | <div class="label-text"><?php esc_html_e( 'Off', 'sharethis-follow-buttons' ); ?></div> |
| 20 | </label> |
| 21 | </div> |
| 22 |