| 1 |
<?php if( ! defined( "ABSPATH" ) ) exit() ?> |
| 2 |
|
| 3 |
<input type="hidden" name="wpfaction" value="rating_settings_save"> |
| 4 |
|
| 5 |
<?php |
| 6 |
WPF()->settings->header( 'rating' ); |
| 7 |
WPF()->settings->form_field( 'rating', 'rating' ); |
| 8 |
WPF()->settings->form_field( 'rating', 'rating_title' ); |
| 9 |
?> |
| 10 |
|
| 11 |
<div class="wpf-subtitle"> |
| 12 |
<span class="dashicons dashicons-star-filled"></span> <?php _e( 'Member Reputation and Titles', 'wpforo' ) ?> |
| 13 |
</div> |
| 14 |
|
| 15 |
<?php WPF()->settings->form_field( 'rating', 'levels' ); ?> |
| 16 |
|
| 17 |
<div class="wpf-subtitle"> |
| 18 |
<span class="dashicons dashicons-calculator"></span> <?php _e( 'Reputation Point Counting', 'wpforo' ) ?> |
| 19 |
</div> |
| 20 |
|
| 21 |
<?php |
| 22 |
WPF()->settings->form_field( 'rating', 'topic_points' ); |
| 23 |
WPF()->settings->form_field( 'rating', 'post_points' ); |
| 24 |
WPF()->settings->form_field( 'rating', 'like_points' ); |
| 25 |
WPF()->settings->form_field( 'rating', 'dislike_points' ); |
| 26 |
?> |
| 27 |
|
| 28 |
<div class="wpf-subtitle"> |
| 29 |
<span class="dashicons dashicons-awards"></span> <?php _e( 'Display Reputation Title and Badges', 'wpforo' ) ?> |
| 30 |
</div> |
| 31 |
|
| 32 |
<?php |
| 33 |
WPF()->settings->form_field( 'rating', 'rating_title_ug' ); |
| 34 |
WPF()->settings->form_field( 'rating', 'rating_badge_ug' ); |
| 35 |
|