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
shortcode-templatecode.php
17 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Shortcode Template |
| 4 | * |
| 5 | * The template wrapper for inline share button shortcode. |
| 6 | * |
| 7 | * @package ShareThisFollowButtons |
| 8 | */ |
| 9 | |
| 10 | ?> |
| 11 | <textarea id="holdtext" style="display:none;"></textarea> |
| 12 | |
| 13 | <div class="readonly-input-field"> |
| 14 | <input type="text" id="inline-follow-<?php echo esc_attr( $type['type'] ); ?>" value="<?php echo esc_attr( $type['value'] ); ?>" readonly size="40"/> |
| 15 | <button type="button" id="copy-<?php echo esc_attr( $type['type'] ); ?>"><?php esc_html_e( 'Copy', 'sharethis-follow-buttons' ); ?></button> |
| 16 | </div> |
| 17 |