//------------------------------------------------------------------------------ // 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. //------------------------------------------------------------------------------ // Feature Licenses Page // // Filename: ml_set_licenses.htm // // This file displays the drives currently in the library and initiates // requests to modify drive fibre channel port properties (speed, topology). // // When POST data is recieved, operation result information is retrieved // from the POST data and displayed in the Message Box. // // // Input: POST data // errorCode result of operation // Message message flag = message in POST data // returnMessage text information about the operation results // // Ouput: POST ('form_out') // url original request page // drvGuid drive guids // libGuid logical library guids // // // Change History: // // Date Defect Changed By Description of Change // ---- ------ ---------- --------------------- // 10/10/2005 roomor01 File Created include('user_inc.htm'); include('main_inc.htm'); $features = get_licensed_features($user); $errorCode=0; $message=""; if($_SERVER[REQUEST_METHOD]=='POST'){ $displayMessage = $_REQUEST['Message']; $errorCode = $_REQUEST['errorCode']; $returnMessage = $_REQUEST['returnMessage']; } $total = count($features); $displayed = $total; ?>