Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content-20241221212636
/
plugins
/
wordfence
/
lib
:
wfScanFileLink.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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(); } }