| Server IP : 121.121.20.254 / Your IP : 216.73.216.202 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/forum/wp-content/plugins/gd-bbpress-tools/forms/tabs/ |
Upload File : |
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<?php if ( isset( $_GET["settings-updated"] ) && $_GET["settings-updated"] == "true" ) { ?>
<div class="updated settings-error" id="setting-error-settings_updated">
<p><strong><?php _e( 'Settings saved.', 'gd-bbpress-tools' ); ?></strong></p>
</div>
<?php } ?>
<form action="" method="post">
<?php wp_nonce_field( "gd-bbpress-tools" ); ?>
<div class="d4p-settings">
<fieldset>
<h3><?php _e( 'Topic Views', 'gd-bbpress-tools' ); ?></h3>
<p><?php _e( 'Topic Views are core bbPress feature, and GD bbPress Tools plugin only registers new views. If you have not used views before, best way to start is by using \'bbPress Topic Views List\' widget that will display all registered views.', 'gd-bbpress-tools' ); ?></p>
</fieldset>
<fieldset>
<h3><?php _e( 'Topics with most replies', 'gd-bbpress-tools' ); ?></h3>
<p><?php _e( 'This view will show list of topics with most replies.', 'gd-bbpress-tools' ); ?></p>
<table class="form-table">
<tbody>
<tr>
<th scope="row"><label for="view_mostreplies_active"><?php _e( 'Active', 'gd-bbpress-tools' ); ?></label></th>
<td>
<input type="checkbox" <?php if ( $options["view_mostreplies_active"] == 1 ) {
echo " checked";
} ?> id="view_mostreplies_active" name="view_mostreplies_active"/>
</td>
</tr>
</tbody>
</table>
</fieldset>
<fieldset>
<h3><?php _e( 'Latest Topics', 'gd-bbpress-tools' ); ?></h3>
<p><?php _e( 'This view will show list of topics starting with latest ones.', 'gd-bbpress-tools' ); ?></p>
<table class="form-table">
<tbody>
<tr>
<th scope="row"><label for="view_latesttopics_active"><?php _e( 'Active', 'gd-bbpress-tools' ); ?></label></th>
<td>
<input type="checkbox" <?php if ( $options["view_latesttopics_active"] == 1 ) {
echo " checked";
} ?> id="view_latesttopics_active" name="view_latesttopics_active"/>
</td>
</tr>
</tbody>
</table>
</fieldset>
<fieldset>
<h3><?php _e( 'Topics by freshness', 'gd-bbpress-tools' ); ?></h3>
<p><?php _e( 'This view will show list of topics ordered by freshness (latest activity).', 'gd-bbpress-tools' ); ?></p>
<table class="form-table">
<tbody>
<tr>
<th scope="row"><label for="view_topicsfreshness_active"><?php _e( 'Active', 'gd-bbpress-tools' ); ?></label></th>
<td>
<input type="checkbox" <?php if ( $options["view_topicsfreshness_active"] == 1 ) {
echo " checked";
} ?> id="view_topicsfreshness_active" name="view_topicsfreshness_active"/>
</td>
</tr>
</tbody>
</table>
</fieldset>
<p class="submit">
<input type="submit" value="<?php _e( 'Save Changes', 'gd-bbpress-tools' ); ?>" class="button-primary gdbb-tools-submit" id="gdbb-views-submit" name="gdbb-views-submit"/>
</p>
</div>
<div class="d4p-settings-second">
<?php include( GDBBPRESSTOOLS_PATH . 'forms/more/toolbox.php' ); ?>
</div>
<div class="d4p-clear"></div>
</form>