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
follow-button-settings.php
23 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Follow Button Settings Template |
| 4 | * |
| 5 | * The template wrapper for the follow buttons settings page. |
| 6 | * |
| 7 | * @package ShareThisFollowButtons |
| 8 | */ |
| 9 | |
| 10 | ?> |
| 11 | <hr class="wp-header-end" style="display:none;"> |
| 12 | <div class="wrap sharethis-wrap"> |
| 13 | <?php echo wp_kses_post( $description ); ?> |
| 14 | |
| 15 | <form action="options.php" method="post"> |
| 16 | <?php |
| 17 | settings_fields( $this->menu_slug . '-follow-buttons' ); |
| 18 | do_settings_sections( $this->menu_slug . '-follow-buttons' ); |
| 19 | submit_button( esc_html__( 'Update', 'sharethis-follow-buttons' ) ); |
| 20 | ?> |
| 21 | </form> |
| 22 | </div> |
| 23 |