mirror of
https://github.com/icecoder/ICEcoder.git
synced 2026-03-03 23:34:01 +01:00
11 lines
389 B
PHP
11 lines
389 B
PHP
<?php
|
|
if (!isset($_SESSION['loggedIn'])) {
|
|
die('Sorry, not logged in.');
|
|
}
|
|
// Purpose: This file is run when a file or dir is deleted, has $fileLoc and $fileName strings available to it
|
|
// Langs: PHP only
|
|
// Example:
|
|
// $fh = fopen(dirname(__FILE__)."/../file-dir-access.log", 'a');
|
|
// fwrite($fh, "DELETED >>> ".date("D dS M Y h:i:sa").": ".$fileLoc."/".$fileName."\n");
|
|
// fclose($fh);
|