//------------------------------------------------------------------------------ // 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 I/O Slots // // Filename: ml_slot_io_set.htm // // This file displays the current I/O slot count configuration and // initiates I/O slot count configuration change requests. // // When a POST is 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 // ioSlots io slot count // // // Change History: // // Date Defect Changed By Description of Change // ---- ------ ---------- --------------------- // 07/21/2005 rwinston File Created // 09/21/2005 0161 rwinston Check Num Log Libs before allowing I/O cfg //------------------------------------------------------------------------------ include_once('common_admin_inc.htm'); include('utils_inc.htm'); // intitalize variables $errorCode = 0; $displayMessage = 0; $counts = get_all_resource_counts($user); // 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_mailbox_slots($user); $ioSlotList = get_allowed_mailbox_sizes($user); $bNoPartitions = ($counts->partition_count==0 ? true: false); error_log(".................................................................bNoPartitions = " . ($bNoPartitions ? "TRUE" : "FALSE")); ?>