File Editor
Directories:
.. (Back)
Files:
issue-base.php
issue-checkGSB.php
issue-checkHowGetIPs.php
issue-checkSpamIP.php
issue-commentBadURL.php
issue-configReadable.php
issue-control-edit-comment.php
issue-control-edit-post.php
issue-control-edit-user.php
issue-control-hide-file.php
issue-control-ignore.php
issue-control-repair.php
issue-control-show-details.php
issue-coreUnknown.php
issue-database.php
issue-diskSpace.php
issue-easyPassword.php
issue-file.php
issue-geoipSupport.php
issue-knownfile.php
issue-optionBadURL.php
issue-postBadTitle.php
issue-postBadURL.php
issue-publiclyAccessible.php
issue-skippedPaths.php
issue-spamvertizeCheck.php
issue-suspiciousAdminUsers.php
issue-timelimit.php
issue-wafStatus.php
issue-wfPluginAbandoned.php
issue-wfPluginRemoved.php
issue-wfPluginUpgrade.php
issue-wfPluginVulnerable.php
issue-wfThemeUpgrade.php
issue-wfUpgrade.php
issue-wpscan_directoryList.php
issue-wpscan_fullPathDiscl.php
no-issues.php
option-scan-signatures.php
options-group-advanced.php
options-group-basic.php
options-group-general.php
options-group-performance.php
options-group-scan-schedule.php
scan-failed.php
scan-progress-detailed.php
scan-progress-element.php
scan-progress.php
scan-results.php
scan-scheduling.php
scan-starter.php
scan-type.php
scanner-status.php
site-cleaning-beta-sigs.php
site-cleaning-bottom.php
site-cleaning-high-sense.php
site-cleaning.php
Create New File
Create
Edit File: scan-progress.php
<?php if (!defined('WORDFENCE_VERSION')) { exit; } /** * Presents a block list element specifically for the scan progress indicator. * * Expects $scanner. * * @var wfScanner $scanner The scanner state. */ $status = $scanner->stageStatus(); ?> <ul class="wf-scanner-progress"> <?php echo wfView::create('scanner/scan-progress-element', array( 'scanner' => $scanner, 'id' => 'wf-scan-spamvertising', 'title' => __('Spamvertising Checks', 'wordfence'), 'status' => $status[wfScanner::STAGE_SPAMVERTISING_CHECKS], ))->render(); echo wfView::create('scanner/scan-progress-element', array( 'scanner' => $scanner, 'id' => 'wf-scan-spam', 'title' => __('Spam Check', 'wordfence'), 'status' => $status[wfScanner::STAGE_SPAM_CHECK], ))->render(); echo wfView::create('scanner/scan-progress-element', array( 'scanner' => $scanner, 'id' => 'wf-scan-blacklist', 'title' => __('Blocklist Check', 'wordfence'), 'status' => $status[wfScanner::STAGE_BLACKLIST_CHECK], ))->render(); echo wfView::create('scanner/scan-progress-element', array( 'scanner' => $scanner, 'id' => 'wf-scan-server', 'title' => __('Server State', 'wordfence'), 'status' => $status[wfScanner::STAGE_SERVER_STATE], ))->render(); echo wfView::create('scanner/scan-progress-element', array( 'scanner' => $scanner, 'id' => 'wf-scan-changes', 'title' => __('File Changes', 'wordfence'), 'status' => $status[wfScanner::STAGE_FILE_CHANGES], ))->render(); echo wfView::create('scanner/scan-progress-element', array( 'scanner' => $scanner, 'id' => 'wf-scan-malware', 'title' => __('Malware Scan', 'wordfence'), 'status' => $status[wfScanner::STAGE_MALWARE_SCAN], ))->render(); echo wfView::create('scanner/scan-progress-element', array( 'scanner' => $scanner, 'id' => 'wf-scan-content', 'title' => __('Content Safety', 'wordfence'), 'status' => $status[wfScanner::STAGE_CONTENT_SAFETY], ))->render(); echo wfView::create('scanner/scan-progress-element', array( 'scanner' => $scanner, 'id' => 'wf-scan-public', 'title' => __('Public Files', 'wordfence'), 'status' => $status[wfScanner::STAGE_PUBLIC_FILES], ))->render(); echo wfView::create('scanner/scan-progress-element', array( 'scanner' => $scanner, 'id' => 'wf-scan-password', 'title' => __('Password Strength', 'wordfence'), 'status' => $status[wfScanner::STAGE_PASSWORD_STRENGTH], ))->render(); echo wfView::create('scanner/scan-progress-element', array( 'scanner' => $scanner, 'id' => 'wf-scan-vulnerability', 'title' => __('Vulnerability Scan', 'wordfence'), 'status' => $status[wfScanner::STAGE_VULNERABILITY_SCAN], ))->render(); echo wfView::create('scanner/scan-progress-element', array( 'scanner' => $scanner, 'id' => 'wf-scan-options', 'title' => __('User & Option Audit', 'wordfence'), 'status' => $status[wfScanner::STAGE_OPTIONS_AUDIT], ))->render(); ?> </ul>
Save Changes
Rename File
Rename