Your IP : 3.147.85.181


Current Path : /home/sudancam/public_html/wp-content/plugins/wordfence/lib/
Upload File :
Current File : /home/sudancam/public_html/wp-content/plugins/wordfence/lib/wfScanFileLink.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();
	}

}