Files
medicalalert-web-reloaded/wp/wp-content/plugins/wordfence/lib/wfScanFileLink.php
Tony Volpe 4eb982d7a8 Merged in feature/from-pantheon (pull request #16)
code from pantheon

* code from pantheon
2024-01-10 17:03:02 +00:00

22 lines
403 B
PHP

<?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();
}
}