/****************************************************************************** * Copyright 1991-2007 by Quantum, Inc. All rights reserved. * No part of this work may be reproduced or transmitted in any * form or by any means, electronic or mechanical, including * photocopying and recording, or by any information storage * or retrieval system, except as may be expressly permitted by * the 17 U.S.C. section 101, et. seq., or in writing by * Quantum, Inc. *******************************************************************************/ $isReportPopup = 1; // Set so we do not release the Service menu RAS Token when bringing up a report. include('common_user_inc.htm'); $descriptions = get_firmware_versions($user); error_log("get_firmware_versions = ". print_r($descriptions, true) ); $product_info = get_product_info($user); error_log("get_product_info = ". print_r($product_info, true) ); ?>
About =LIBTYPE_NAME?> | User: = $user->username ?> |
=LIBTYPE_NAME?> | |
// Try the GUI override first
$Brand = getenv(ADICLIBRARY_BRAND_GUI);
if( $Brand == "" )
$Brand = getenv(ADICLIBRARY_BRAND);
switch( $Brand )
{
case 'ibm':
echo 'Serial#: ' . $product_info->alternateId . ' '; // echo 'AIN #: ' . $product_info->serialnumber . ' '; echo 'Copyright © 2003-2008 Quantum Corporation '; break; case 'dell': echo 'Serial#: ' . $product_info->serialnumber . ' '; echo 'Service Tag: ' . $product_info->alternateId . ' '; echo 'Copyright © 2003-2008 Dell Inc. '; break; case 'tandberg': echo 'Serial#: ' . $product_info->serialnumber . ' '; // echo 'AIN #: ' . $product_info->alternateId . ' '; echo 'Copyright © 2008 Tandberg Data ASA. '; break; case 'adic': echo 'Serial#: ' . $product_info->serialnumber . ' '; // echo 'AIN #: ' . $product_info->alternateId . ' '; echo 'Copyright © 2003-2008 Quantum Corporation '; break; default: error_log("* * * No Branding - defaulting to Quantum"); case 'quantum': echo 'Serial#: ' . $product_info->serialnumber . ' '; // echo 'AIN #: ' . $product_info->alternateId . ' '; echo 'Copyright © 2003-2008 Quantum Corporation '; break; } ?> |
|
||
|