Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/wp-conte.../plugins/wpforms-.../template.../admin/dashboar.../widget
File: settings.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* Dashboard widget settings gear icon template.
[2] Fix | Delete
*
[3] Fix | Delete
* @since 1.7.4
[4] Fix | Delete
*
[5] Fix | Delete
* @var int $graph_style Graph style, value 1 for Bar style, 2 for Line style.
[6] Fix | Delete
* @var int $color_scheme Color scheme, value 1 for WPForms color scheme, 2 for for WordPress color scheme.
[7] Fix | Delete
* @var bool $enabled If form fields should be enabled.
[8] Fix | Delete
*/
[9] Fix | Delete
[10] Fix | Delete
if ( ! defined( 'ABSPATH' ) ) {
[11] Fix | Delete
exit;
[12] Fix | Delete
}
[13] Fix | Delete
[14] Fix | Delete
$disabled = ! $enabled;
[15] Fix | Delete
[16] Fix | Delete
?>
[17] Fix | Delete
<div class="wpforms-dash-widget-settings-container">
[18] Fix | Delete
<button id="wpforms-dash-widget-settings-button" class="wpforms-dash-widget-settings-button button" type="button">
[19] Fix | Delete
<span class="dashicons dashicons-admin-generic"></span>
[20] Fix | Delete
</button>
[21] Fix | Delete
<div class="wpforms-dash-widget-settings-menu <?php echo $disabled ? 'disabled' : ''; ?>">
[22] Fix | Delete
[23] Fix | Delete
<?php if ( isset( $graph_style ) ) : ?>
[24] Fix | Delete
<div class="wpforms-dash-widget-settings-menu-wrap">
[25] Fix | Delete
<h4><?php esc_html_e( 'Graph Style', 'wpforms-lite' ); ?></h4>
[26] Fix | Delete
<div>
[27] Fix | Delete
<div class="wpforms-dash-widget-settings-menu-item">
[28] Fix | Delete
<input type="radio" id="wpforms-dash-widget-settings-style-bar" name="wpforms-style" value="1" <?php checked( '1', $graph_style ); ?> <?php disabled( $disabled ); ?>>
[29] Fix | Delete
<label for="wpforms-dash-widget-settings-style-bar" <?php disabled( $disabled ); ?>><?php esc_html_e( 'Bar', 'wpforms-lite' ); ?></label>
[30] Fix | Delete
</div>
[31] Fix | Delete
<div class="wpforms-dash-widget-settings-menu-item">
[32] Fix | Delete
<input type="radio" id="wpforms-dash-widget-settings-style-line" name="wpforms-style" value="2" <?php checked( '2', $graph_style ); ?> <?php disabled( $disabled ); ?>>
[33] Fix | Delete
<label for="wpforms-dash-widget-settings-style-line" <?php disabled( $disabled ); ?>><?php esc_html_e( 'Line', 'wpforms-lite' ); ?></label>
[34] Fix | Delete
</div>
[35] Fix | Delete
</div>
[36] Fix | Delete
</div>
[37] Fix | Delete
<?php endif; ?>
[38] Fix | Delete
[39] Fix | Delete
<?php if ( isset( $color_scheme ) ) : ?>
[40] Fix | Delete
<div class="wpforms-dash-widget-settings-menu-wrap color-scheme">
[41] Fix | Delete
<h4><?php esc_html_e( 'Color Scheme', 'wpforms-lite' ); ?></h4>
[42] Fix | Delete
<div>
[43] Fix | Delete
<div class="wpforms-dash-widget-settings-menu-item">
[44] Fix | Delete
<input type="radio" id="wpforms-dash-widget-settings-color-wpforms" name="wpforms-color" value="1" <?php checked( '1', $color_scheme ); ?> <?php disabled( $disabled ); ?>>
[45] Fix | Delete
<label for="wpforms-dash-widget-settings-color-wpforms" <?php disabled( $disabled ); ?>><?php esc_html_e( 'WPForms', 'wpforms-lite' ); ?></label>
[46] Fix | Delete
</div>
[47] Fix | Delete
<div class="wpforms-dash-widget-settings-menu-item">
[48] Fix | Delete
<input type="radio" id="wpforms-dash-widget-settings-color-wp" name="wpforms-color" value="2" <?php checked( '2', $color_scheme ); ?> <?php disabled( $disabled ); ?>>
[49] Fix | Delete
<label for="wpforms-dash-widget-settings-color-wp" <?php disabled( $disabled ); ?>><?php esc_html_e( 'WordPress', 'wpforms-lite' ); ?></label>
[50] Fix | Delete
</div>
[51] Fix | Delete
</div>
[52] Fix | Delete
</div>
[53] Fix | Delete
<?php endif; ?>
[54] Fix | Delete
[55] Fix | Delete
<button type="button" class="button wpforms-dash-widget-settings-menu-save" <?php disabled( $disabled ); ?>><?php esc_html_e( 'Save Changes', 'wpforms-lite' ); ?></button>
[56] Fix | Delete
</div>
[57] Fix | Delete
</div>
[58] Fix | Delete
[59] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function