username = $_SESSION['user']; $Active->ListActive(); } ////////////////////////////////////////////////////////////////// // Add active record ////////////////////////////////////////////////////////////////// if ( $_GET['action'] == 'add' ) { $Active->username = $_SESSION['user']; $Active->path = $_GET['path']; $Active->Add(); } ////////////////////////////////////////////////////////////////// // Rename ////////////////////////////////////////////////////////////////// if ( $_GET['action'] == 'rename' ) { $Active->username = $_SESSION['user']; $Active->path = $_GET['old_path']; $Active->new_path = $_GET['new_path']; $Active->Rename(); } ////////////////////////////////////////////////////////////////// // 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( $Active->path ); } ////////////////////////////////////////////////////////////////// // 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(); } if( $_GET['action'] == 'save_positions' ) { ignore_user_abort( true ); $Active->username = $_SESSION['user']; $Active->savePositions( $_POST["positions"] ); }