Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[已答复] 登陆框横向显示。已修改成功。

[复制链接]
gehemei 发表于 2009-12-17 11:39:50 | 显示全部楼层 |阅读模式
本帖最后由 gehemei 于 2009-12-17 11:41 编辑

复制一下代码:覆盖ss跟目录下:batch.panel.php里面的全部内容。就OK了。

测试地址:www.aibohe.com
  1. <?php

  2. /*
  3.         [SupeSite] (C) 2007-2009 Comsenz Inc.
  4.         $Id: batch.panel.php 13359 2009-09-22 09:06:19Z zhaofei $
  5. */

  6. include_once('./common.php');
  7. include_once(S_ROOT.'./language/batch.lang.php');

  8. $uid = $_SGLOBAL['supe_uid'];
  9. $ucurl = avatar($uid);
  10. $siteurl = S_URL_ALL;
  11. if(!empty($uid)) {
  12.         if($channels['menus']['bbs']) {
  13.                 $bbshtml = '<a href="'.$_SC['bbsurl'].'" target="_blank">'.$blang['forum_visit'].'</a>';
  14.         }
  15.         if($channels['menus']['uchblog'] || $channels['menus']['uchimage']) {
  16.                 $uchhtml = '<a href="'.$_SC['uchurl'].'" target="_blank">'.$blang['home_visit'].'</a>';
  17.         }
  18.         $showpost = 0;
  19.         $showposturl = '';
  20.         $divhtml = '<div id="contribute_op" style="display:none;"><ul>';

  21.         if(!empty($channels['menus'])) {
  22.                 foreach($channels['menus'] as $value) {
  23.                         $channel = $value['nameid'];
  24.                         if(!checkperm('allowpost')) continue;
  25.                         if($value['type']=='type' || $value['type']=='user' && $value['upnameid']=='news') {
  26.                                 $divhtml .= '<li><a href="'.$siteurl.'/cp.php?ac=news&op=add&type='.$value['nameid'].'" onclick="hidendivop();" target="_blank">'.$value['name'].'</a></li>';
  27.                                 $showpost++;
  28.                                 $showposturl = $siteurl.'/cp.php?ac=news&op=add&type='.$value['nameid'];
  29.                         } elseif($value['type']=='model') {
  30.                                 $divhtml .= '<li><a href="'.$siteurl.'/cp.php?ac=models&op=add&nameid='.$value['nameid'].'" onclick="hidendivop();" target="_blank">'.$value['name'].'</a></li>';
  31.                                 $showpost++;
  32.                                 $showposturl = $siteurl.'/cp.php?ac=models&op=add&nameid='.$value['nameid'];
  33.                         }
  34.                 }
  35.         }
  36.        
  37.         if($showpost == 1) {
  38.                 $showposturl = "document.write('<a href="$showposturl" class="contribute_txt" target="_blank">$lang[pannel_contribution]</a> ');";
  39.         } elseif($showpost > 1) {
  40.                 $showposturl = "document.write('<a href="javascript:contributeop();" class="contribute_txt">$lang[pannel_contribution]</a> ');";
  41.         }
  42.        
  43.         $divhtml .= '</ul></div>';
  44.        
  45.         $openstate = empty($_GET['open']) ? array('', 'none') : array('none', '');
  46.         print <<<END
  47.         function contributeop() {
  48.                 if($('contribute_op').style.display != 'block') {
  49.                         $('contribute_op').style.display = 'block';
  50.                 } else {
  51.                         $('contribute_op').style.display = 'none';
  52.                 }       
  53.         }
  54.         function hidendivop(){
  55.                 $('contribute_op').style.display = 'none';
  56.         }
  57.         function hidenposition(){
  58.                 $('loginin_info').style.display = $('loginin_info').style.display=='none' ? '' : 'none';
  59.                 $('loginin_info_all').style.display = $('loginin_info_all').style.display=='none' ? '' : 'none';
  60.         }
  61.         document.write('<div id="loginin_info" style="display:$openstate[0];">');
  62.         document.write('<a href="$siteurl/space.php?uid=$uid">$_SGLOBAL[supe_username]</a> <a class="credit" href="$siteurl/cp.php?ac=credit" title="$lang[credit]">{$_SGLOBAL['member']['credit']}</a>&nbsp;<span class="out">[<a href="$siteurl/batch.login.php?action=logout">$blang[safe_logout]</a>]</span>');
  63.         document.write('<span class="admin">');
  64.         document.write(' <a href="$siteurl/cp.php">$blang[my_center]</a>');
  65.         document.write('</span>');
  66.         document.write('<a class="open" href="javascript:;" onclick="hidenposition();" title="$blang[open]">$blang[open]</a>');
  67.         document.write('</div>');
  68.        
  69.         document.write('<div  style="display:$openstate[1];">');


  70.         document.write('<div class="user_info">');
  71.         document.write('$blang[welcome], <a href="$siteurl/space.php?uid=$uid">$_SGLOBAL[supe_username]</a><a href="$siteurl/batch.login.php?action=logout">$blang[safe_logout]</a>');
  72.         document.write('<a href="$siteurl/cp.php?ac=credit" title="$lang[credit]">积分:{$_SGLOBAL['member']['credit']}</a>&nbsp');
  73.         document.write('<a href="$siteurl/space.php?uid=$uid">$blang[my_space]</a>');
  74.         document.write('<a href="$siteurl/cp.php">$blang[my_center]</a>');



  75.         <!--$showposturl-->
  76.         document.write('<span><a href="$siteurl/batch.search.php">$blang[search]</a>');
  77.         document.write('$bbshtml');
  78.         document.write('$uchhtml');
  79. END;
  80.         if(checkperm('manageadmincp')) print("document.write('<a href="$siteurl/admincp.php" target="_blank">$blang[management]</a>');");
  81.         print <<<END
  82.         document.write(' </span></div>$divhtml');
  83.        
  84.         document.write('</div>');

  85. END;
  86. } else {

  87.         $formhash = formhash();
  88.         print <<<END
  89.         var noseccode = $_SCONFIG[noseccode];


  90.         document.write('<div id="login_authcode_img" style="display:none"><img src="$siteurl/do.php?action=seccode" alt="$lang[verification_code]" id="img_seccode" /></div>');
  91.        
  92.         document.write('<form action="$siteurl/batch.login.php?action=login" method="post">');
  93.         document.write('<input type="hidden" name="formhash" value="$formhash" />');

  94.         document.write('用户名: <input type="text" class="index_header_text"  name="username" size="23" onfocus="addseccode();" tabindex="1" />');
  95.         document.write('&nbsp;&nbsp;密码: <input type="password" class="index_header_text" name="password" size="23" onfocus="addseccode();" tabindex="2" />');
  96.         document.write('<p id="login_authcode_input" style="display:none"><label>$lang[verification_code]:</label> <input type="text" class="input_tx" name="seccode" size="10" onfocus="showseccode()"; tabindex="3" /> <a href="javascript:updateseccode();">$lang[changge_verification_code]</a></p>');


  97.         document.write('&nbsp;&nbsp;<input id="cookietime" type="checkbox" value="315360000" name="cookietime" tabindex="4" />');
  98.         document.write('<label  for="cookietime">自动登录</label>&nbsp;&nbsp;');
  99.         document.write('<input type="submit" name="loginsubmit" class="index_header_but" value="$blang[login]" tabindex="5" />');

  100.         document.write('&nbsp;<a href="$siteurl/do.php?action=register">$blang[registration]</a><a href="$siteurl/do.php?action=lostpasswd">$blang[find_passwords]</a>');
  101.         document.write('</form>');

  102. END;
  103. }

  104. ?>
复制代码
benba 发表于 2009-12-17 11:44:08 | 显示全部楼层
回复

使用道具 举报

 楼主| gehemei 发表于 2009-12-17 14:29:40 | 显示全部楼层
强,比我历害,我改了一天,才改好。因为很多不懂,是一点一点试出来的。献丑了。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-17 22:33 , Processed in 0.023689 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表