rebase from live enviornment
This commit is contained in:
22
wp/plugins/wordfence/lib/wfScanFileLink.php
Normal file
22
wp/plugins/wordfence/lib/wfScanFileLink.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
require_once __DIR__ . '/wfScanFile.php';
|
||||
|
||||
class wfScanFileLink extends wfScanFile {
|
||||
|
||||
private $linkPath;
|
||||
|
||||
public function __construct($linkPath, $realPath, $wordpressPath) {
|
||||
parent::__construct($realPath, $wordpressPath);
|
||||
$this->linkPath = $linkPath;
|
||||
}
|
||||
|
||||
public function getLinkPath() {
|
||||
return $this->linkPath;
|
||||
}
|
||||
|
||||
public function getDisplayPath() {
|
||||
return $this->getLinkPath();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user