This commit is contained in:
2026-07-02 15:54:39 -06:00
commit 9883323161
17470 changed files with 4470592 additions and 0 deletions
@@ -0,0 +1,68 @@
<?php
/**
* Displays the main "Settings" tab.
*
* @link https://bettersearchreplace.com
* @since 1.1
*
* @package Better_Search_Replace
* @subpackage Better_Search_Replace/templates
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
// Prevent direct/unauthorized access.
if ( ! defined( 'BSR_PATH' ) ) exit;
// phpcs:disable WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound -- Template partial loaded in BSR admin context; variables are file scope, not WordPress globals.
$page_size = get_option( 'bsr_page_size' ) ? absint( get_option( 'bsr_page_size' ) ) : 20000;
// phpcs:enable WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound
?>
<?php settings_fields( 'bsr_settings_fields' ); ?>
<div class="ui-sidebar-wrapper">
<div class="inside">
<div class="panel">
<div class="panel-header">
<h3><?php esc_html_e( 'Settings', 'better-search-replace' ); ?></h3>
</div>
<div class="panel-content settings">
<!--Max Page Size-->
<div class="row last-row">
<div class="input-text">
<div class="settings-header">
<label><strong><?php esc_html_e( 'Max Page Size', 'better-search-replace' ); ?></strong></label>
<span id="bsr-page-size-value"><?php echo esc_html( (string) absint( $page_size ) ); ?></span>
</div>
<input id="bsr_page_size" type="hidden" name="bsr_page_size" value="<?php echo esc_attr( (string) $page_size ); ?>" />
<p class="description"><?php esc_html_e( 'If you notice timeouts or are unable to backup/import the database, try decreasing this value.', 'better-search-replace' ); ?></p>
<div class="slider-wrapper">
<div id="bsr-page-size-slider" class="bsr-slider"></div>
</div>
</div>
</div>
<!--Submit Button-->
<div class="row panel-footer">
<?php submit_button(); ?>
</div>
</div>
</div>
</div>
<?php
if ( file_exists( BSR_PATH . 'templates/sidebar.php' ) ) {
include_once BSR_PATH . 'templates/sidebar.php';
}
?>
</div>