////////////////////////////////////////////////////////////////// // Check if file is active ////////////////////////////////////////////////////////////////// if ($_GET['action'] == 'check') { $Active->username = $_SESSION['user']; $Active->path = $_GET['path']; $Active->Check(); } ////////////////////////////////////////////////////////////////// // Remove active record ////////////////////////////////////////////////////////////////// if ($_GET['action'] == 'remove') { $Active->username = $_SESSION['user']; $Active->path = $_GET['path']; $Active->Remove(); } ////////////////////////////////////////////////////////////////// // Remove all active record ////////////////////////////////////////////////////////////////// if ($_GET['action'] == 'removeall') { $Active->username = $_SESSION['user']; $Active->RemoveAll(); } ////////////////////////////////////////////////////////////////// // Mark file as focused ////////////////////////////////////////////////////////////////// if ($_GET['action'] == 'focused') { $Active->username = $_SESSION['user']; $Active->path = $_GET['path']; $Active->MarkFileAsFocused(); }