//------------------------------------------------------------------------------ // Licensed Materials - Property of IBM // (c) Copyright IBM Corporation 2001,2002 All Rights Reserved. // US Government Users Restricted Rights - Use, duplication or disclosure // restricted by GSA ADP Schedule Contract with IBM Corp. //------------------------------------------------------------------------------ // Configure Clean Slots // // Filename: ml_slot_clean_set.htm // // This file displays the current cleaning slot count configuration and // initiates cleaning slot count configuration change requests. // // When a POST is received, operation result information is retrieved from POST // data and displayed in the Message Box. // // // Input: POST data // url original request page // errorCode result of operation // returnMessage text information about the operation results // // Ouput: POST ('form_out') // // url original request page // cSlots clean slot count // // Change History: // // Date Defect Changed By Description of Change // ---- ------ ---------- --------------------- // 07/21/2005 rwinston File Created // //------------------------------------------------------------------------------ include('common_admin_inc.htm'); include('utils_inc.htm'); //initialize variables $errorCode = 0; $returnMessage = " "; // if this is a post, then it is the return from an operation // retrieve the return information if ($_SERVER['REQUEST_METHOD'] == "POST") { $errorCode = $_REQUEST["errorCode"]; $displayMessage = $_REQUEST["Message"]; $returnMessage = $_REQUEST["returnMessage"]; } // get the current I/O configuration $nSlots = get_num_cleaning_slots($user); $cSlotList = get_allowed_cleaning_sizes($user); ?>