Files
ICEcoder/processes/on-file-dir-move.php
2020-02-01 13:25:33 +00:00

17 lines
588 B
PHP

<?php
if (!isset($_SESSION['loggedIn'])) {
die('Sorry, not logged in.');
}
// Purpose: This file is run when a file or dir is moved, has $fileLoc and $fileName strings available to it
// Langs: PHP (tho can concat JS within $doNext string, see below)
// Example:
// $fh = fopen(dirname(__FILE__)."/../file-dir-access.log", 'a');
// fwrite($fh, "MOVED >>> ".date("D dS M Y h:i:sa").": ".$fileLoc."/".$fileName."\n");
// fclose($fh);
if (false === isset($doNext)) {
$doNext = "";
}
// If JS is needed, add within $doNext string below, eg $doNext .= ";alert('moved');";
$doNext .= "";