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/clone/wp-conte.../plugins/wordfenc.../views/scanner
File: options-group-basic.php
<?php
[0] Fix | Delete
if (!defined('WORDFENCE_VERSION')) { exit; }
[1] Fix | Delete
/**
[2] Fix | Delete
* Presents the Basic Scan Type Options group.
[3] Fix | Delete
*
[4] Fix | Delete
* Expects $scanner and $stateKey.
[5] Fix | Delete
*
[6] Fix | Delete
* @var wfScanner $scanner
[7] Fix | Delete
* @var string $stateKey The key under which the collapse state is stored.
[8] Fix | Delete
* @var bool $collapseable If defined, specifies whether or not this grouping can be collapsed. Defaults to true.
[9] Fix | Delete
*/
[10] Fix | Delete
[11] Fix | Delete
if (!isset($collapseable)) {
[12] Fix | Delete
$collapseable = true;
[13] Fix | Delete
}
[14] Fix | Delete
?>
[15] Fix | Delete
<div class="wf-row">
[16] Fix | Delete
<div class="wf-col-xs-12">
[17] Fix | Delete
<div class="wf-block<?php if (!$collapseable) { echo ' wf-always-active'; } else { echo (wfPersistenceController::shared()->isActive($stateKey) ? ' wf-active' : ''); } ?>" data-persistence-key="<?php echo esc_attr($stateKey); ?>">
[18] Fix | Delete
<div class="wf-block-header">
[19] Fix | Delete
<div class="wf-block-header-content">
[20] Fix | Delete
<div class="wf-block-title">
[21] Fix | Delete
<strong><?php esc_html_e('Basic Scan Type Options', 'wordfence'); ?></strong>
[22] Fix | Delete
</div>
[23] Fix | Delete
<?php if ($collapseable): ?><div class="wf-block-header-action"><div class="wf-block-header-action-disclosure" role="checkbox" aria-checked="<?php echo (wfPersistenceController::shared()->isActive($stateKey) ? 'true' : 'false'); ?>" tabindex="0"></div></div><?php endif; ?>
[24] Fix | Delete
</div>
[25] Fix | Delete
</div>
[26] Fix | Delete
<div class="wf-block-content">
[27] Fix | Delete
<?php
[28] Fix | Delete
echo wfView::create('scanner/scan-type', array(
[29] Fix | Delete
'scanner' => $scanner,
[30] Fix | Delete
))->render();
[31] Fix | Delete
?>
[32] Fix | Delete
</div>
[33] Fix | Delete
</div>
[34] Fix | Delete
</div>
[35] Fix | Delete
</div> <!-- end scan type -->
[36] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function