Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
post-excerpt
/
wordfence
/
lib
:
wfScanFileListItem.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php require_once __DIR__ . '/wfScanFile.php'; class wfScanFileListItem extends wfScanFile { private $id; private $next; public function __construct($id, $realPath, $wordpressPath, $next = null) { parent::__construct($realPath, $wordpressPath); $this->id = $id; $this->next = $next; } public function getId() { return $this->id; } public function getNext() { return $this->next; } }