🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:interface-progress-storage.php
<?php namespace BMI\Plugin\Progress; /** * Interface ProgressStorageInterface * * Defines the contract for storing and retrieving progress state * during search and replace operations. */ interface ProgressStorageInterface { /** * Loads the stored progress report. * * @return array|null The progress report array, or null if not found. */ public function load(); /** * Saves the progress report. * * @param array $report The report array to save. * @return bool True on success, false on failure. */ public function save($report); /** * Clears/deletes the stored progress. * * @return bool True on success, false on failure. */ public function clear(); /** * Checks if a stored progress report exists. * * @return bool True if exists, false otherwise. */ public function exists(); }
Save Changes
Cancel
Create New File
Create New Folder