__('Scan Options and Scheduling', 'wordfence'),
'helpLink' => wfSupportController::supportURL(wfSupportController::ITEM_SCAN),
'helpLabelHTML' => wp_kses(__('Learn more
about Scanning', 'wordfence'), array('span'=>array('classes'=>array()))),
'showIcon' => true,
))->render();
?>
-
'wf-scanner-type',
'percentage' => $scanner->scanTypeStatus(),
'activeColor' => (!$scanner->isEnabled() ? '#ececec' : null /* automatic */),
'title' => __('Scan Type: ', 'wordfence') . wfScanner::displayScanType($scanner->scanType()),
'subtitle' => wfScanner::displayScanTypeDetail($scanner->scanType()),
'link' => $optionsURL,
'linkLabel' => null,
'statusTitle' => __('Scan Status', 'wordfence'),
'statusList' => $scanner->scanTypeStatusList(),
'helpLink' => wfSupportController::supportURL(wfSupportController::ITEM_SCAN_STATUS_OVERALL),
))->render();
?>
-
'wf-scanner-malware-type',
'percentage' => $scanner->signatureMode() == wfScanner::SIGNATURE_MODE_PREMIUM ? 1.0 : 0.7,
'activeColor' => (!$scanner->isEnabled() ? '#ececec' : null /* automatic */),
'title' => __('Malware Signatures: ', 'wordfence') . ($scanner->signatureMode() == wfScanner::SIGNATURE_MODE_PREMIUM ? __('Premium', 'wordfence') : __('Community', 'wordfence')),
'subtitle' => ($scanner->signatureMode() == wfScanner::SIGNATURE_MODE_PREMIUM ? __('Signatures updated in real-time', 'wordfence') : __('Signature updates delayed by 30 days', 'wordfence')),
'link' => 'https://www.wordfence.com/gnl1scanUpgrade/wordfence-signup/',
'linkLabel' => null,
'statusTitle' => __('Malware Signatures Status', 'wordfence'),
'statusList' => $scanner->signatureMode() == wfScanner::SIGNATURE_MODE_PREMIUM ? array() : array(array(
'percentage' => 0.30,
'title' => __('Enable Premium Scan Signatures.', 'wordfence'),
)),
'helpLink' => wfSupportController::supportURL(wfSupportController::ITEM_SCAN_STATUS_MALWARE),
))->render();
?>
-
'wf-scanner-reputation',
'percentage' => $scanner->reputationStatus(),
'activeColor' => (!$scanner->isEnabled() ? '#ececec' : null /* automatic */),
'title' => __('Reputation Checks', 'wordfence'),
'subtitle' => __('Check spam & spamvertising blocklists', 'wordfence'),
'link' => $optionsURL . '#wf-scanner-options-general',
'linkLabel' => null,
'statusTitle' => __('Reputation Check Status', 'wordfence'),
'statusList' => $scanner->reputationStatusList(),
'helpLink' => wfSupportController::supportURL(wfSupportController::ITEM_SCAN_STATUS_REPUTATION),
))->render();
?>
$scanner,
'stateKey' => 'wf-scanner-options-schedule',
))->render();
echo wfView::create('scanner/options-group-basic', array(
'scanner' => $scanner,
'stateKey' => 'wf-scanner-options-basic',
'collapseable' => false,
))->render();
echo wfView::create('scanner/options-group-general', array(
'scanner' => $scanner,
'stateKey' => 'wf-scanner-options-general',
))->render();
echo wfView::create('scanner/options-group-performance', array(
'scanner' => $scanner,
'stateKey' => 'wf-scanner-options-performance',
))->render();
echo wfView::create('scanner/options-group-advanced', array(
'scanner' => $scanner,
'stateKey' => 'wf-scanner-options-custom',
))->render();
?>