55 lines
1.4 KiB
PHP
Executable File
55 lines
1.4 KiB
PHP
Executable File
<?php
|
||
/*********************************************************
|
||
程序说明:
|
||
功能说明:参数维护的index页面,对所选的$sysId判断是否安装
|
||
|
||
调用关系:调用: header.inc
|
||
被调用:
|
||
|
||
变量说明:
|
||
|
||
返回值:无
|
||
|
||
作者:
|
||
|
||
修改注释:
|
||
NO.1
|
||
姓名 :
|
||
时间:
|
||
修改说明:
|
||
*********************************************************/
|
||
require("../../inc/header.inc");
|
||
if($sysId == ''){ //默认显示OMC,需要和paramConf_up.php保持一致
|
||
$sysId='322_99_99';
|
||
}
|
||
|
||
$sysIdArr=explode('_',$sysId);
|
||
$sysTypeNo=$sysIdArr[0];
|
||
|
||
if($sysTypeNo == '500'){//BSS
|
||
if($language == 'chn'){
|
||
$language = 'gb';
|
||
}else{
|
||
$language = 'eng';
|
||
}
|
||
$sysNo = $sysIdArr[1];
|
||
$bss_num=$sysNo - 0;
|
||
echo " <meta http-equiv=\"refresh\" content=\"0; url=../../bssomc/modifyBssParam.php?bssid=$bss_num&language=$language\"> ";
|
||
exit();
|
||
}
|
||
|
||
$selectedSysId=isset($selectedSysId)? $selectedSysId:-1;
|
||
?>
|
||
<frameset framespacing="0" border="0" cols="280,*" frameborder="0">
|
||
<frame name="contents" target="r_r_main" src="<?php echo"paramConf_down_left.php?sysId=$sysId&selectedSysId=$selectedSysId&selectedDPC=$selectedDPC";?>" scrolling="auto">
|
||
<frame name="r_r_main" src="<?php echo"paramConf_down_main.php?sysId=$sysId&selectedSysId=$selectedSysId&selectedDPC=$selectedDPC";?>" scrolling="auto" target="_self">
|
||
<noframes>
|
||
<body>
|
||
|
||
<p>you browser can not support frame</p>
|
||
|
||
</body>
|
||
</noframes>
|
||
</frameset>
|
||
</html>
|