Esempio n. 1
0
function block_batch($param)
{
    global $_SGLOBAL, $_SBLOCK, $_SCONFIG;
    $cachekey = smd5($param);
    $paramarr = parseparameter($param);
    if (empty($_SCONFIG['allowcache'])) {
        $paramarr['cachetime'] = 0;
        //关闭 cache
    } else {
        $paramarr['cachetime'] = intval($paramarr['cachetime']);
    }
    if (!empty($paramarr['perpage'])) {
        // pagination
        $_GET['page'] = empty($_GET['page']) ? 1 : intval($_GET['page']);
        if ($_GET['page'] < 1) {
            $_GET['page'] = 1;
        }
        if ($_GET['page'] > 1 && $paramarr['cachetime']) {
            $cachekey = smd5($param . $_GET['page']);
            //key改变
        }
    }
    //获取 cache
    if ($paramarr['cachetime']) {
        $caches = block_get($cachekey);
    } else {
        $caches = array();
    }
    if (!empty($caches['mtime']) && $_SGLOBAL['timestamp'] - $caches['mtime'] <= $paramarr['cachetime']) {
        //使用 cache
        $_SBLOCK[$paramarr['cachename']] = $caches['values'];
        $_SBLOCK[$paramarr['cachename'] . '_multipage'] = $caches['multi'];
    } else {
        //查询数据
        $blockarr = array();
        $results = getparamsql($paramarr);
        if ($results['count']) {
            $query = $_SGLOBAL['db']->query($results['sql']);
            while ($value = $_SGLOBAL['db']->fetch_array($query)) {
                $blockarr[] = $value;
            }
        }
        $_SBLOCK[$paramarr['cachename']] = $blockarr;
        $_SBLOCK[$paramarr['cachename'] . '_multipage'] = $results['multi'];
        // update  cache
        if ($paramarr['cachetime']) {
            $blockarr['multipage'] = $results['multi'];
            // cache  pagination
            block_set($cachekey, $blockarr);
        }
    }
}
Esempio n. 2
0
<?php if(!defined('IN_DISCUZ')) exit('Access Denied'); hookscriptoutput('discuz');
block_get('21,22,23,24,25,57');?><?php include template('common/header'); ?><div id="pt" class="bm cl">
<?php if(empty($gid) && $announcements) { ?>
<div class="y">
<div id="an">
<dl class="cl">
<dt class="z xw1">公告:&nbsp;</dt>
<dd>
<div id="anc"><ul id="ancl"><?php echo $announcements;?></ul></div>
</dd>
</dl>
</div>
<script type="text/javascript">announcement();</script>
</div>
<?php } ?>
<div class="z">
<a href="./" class="nvhm" title="首页"><?php echo $_G['setting']['bbname'];?></a><em>&raquo;</em><a href="forum.php"><?php echo $_G['setting']['navs']['2']['navname'];?></a><?php echo $navigation;?>
</div>
<div class="z"><?php if(!empty($_G['setting']['pluginhooks']['index_status_extra'])) echo $_G['setting']['pluginhooks']['index_status_extra'];?></div>
</div>


<?php if(empty($gid)) { ?><?php echo adshow("text/wp a_t");?><?php } ?>

<style id="diy_style" type="text/css">#framePv2r91 { border:0px !important;}#portal_block_21 { margin:0px !important;}#portal_block_21 .dxb_bc { margin:0px !important;}#portal_block_25 { margin-top:8px !important;}</style>

<?php if(empty($gid)) { ?>
<div class="wp">
<!--[diy=diy1]--><div id="diy1" class="area"></div><!--[/diy]-->
</div>
<?php } ?>
Esempio n. 3
0
<?php if(!defined('IN_DISCUZ')) exit('Access Denied'); hookscriptoutput('discuz');
block_get('81,84,82,83');?><?php include template('common/header'); ?><link rel="stylesheet" type="text/css" href="template/xinglan_c3/common/index.css"/>

<!--[diy=diy1]--><div id="diy1" class="area"></div><!--[/diy]-->




<?php if(empty($gid)) { ?><?php echo adshow("text/wp a_t");?><?php } ?>

<style id="diy_style" type="text/css"></style>

<?php if(empty($gid)) { ?>
<div class="wp">
<div class="aacd">
<div id="pt" class="bm cl">
<?php if(empty($gid) && $announcements) { ?>
<div class="y">
<div id="an">
<dl class="cl">
<dt class="z xw1"></dt>
<dd>
<div id="anc"><ul id="ancl"><?php echo $announcements;?></ul></div>
</dd>
</dl>
</div>
<script type="text/javascript">announcement();</script>
</div>
<?php } ?>
<div class="z">
<a href="./" class="nvhm" title="首页"><?php echo $_G['setting']['bbname'];?></a><em>&rsaquo;</em><a href="forum.php"><?php echo $_G['setting']['navs']['2']['navname'];?></a><?php echo $navigation;?>
Esempio n. 4
0
 private function _getPicByBid($bid)
 {
     global $_G;
     block_get($bid);
     $itemList = $_G['block'][$bid]['itemlist'];
     $list = array();
     foreach ($itemList as $item) {
         $sourceType = $item['idtype'] == 'aid' ? 'news' : 'topic';
         $sourceId = $item['id'];
         $title = $item['title'];
         if ($item['makethumb'] == 1) {
             // 生成缩略图成功
             if ($item['picflag'] == 1) {
                 // 本地
                 $picPath = $_G['setting']['attachurl'] . $item['thumbpath'];
             } elseif ($item['picflag'] == 2) {
                 // 远程
                 $picPath = $_G['setting']['ftp']['attachurl'] . $item['thumbpath'];
             }
         } elseif ($item['makethumb'] == 0) {
             // 缩略图生成失败
             $picPath = $item['pic'];
         }
         $picPath = ImageUtils::getThumbImage(WebUtils::getHttpFileName($picPath));
         $list[] = $this->_fieldPicList(0, $sourceType, $sourceId, $title, $picPath);
     }
     return $list;
 }
Esempio n. 5
0
 public static function showSliderView()
 {
     showtableheader(Appbyme::lang('mobcent_portal_module_slider_edit'));
     showsubtitle(array('', 'display_order', Appbyme::lang('mobcent_portal_module_slider_title'), Appbyme::lang('mobcent_portal_module_source_type'), Appbyme::lang('mobcent_portal_module_source'), Appbyme::lang('mobcent_portal_module_slider_type'), Appbyme::lang('mobcent_portal_module_slider')));
     $mid = (int) $_GET['moduleid'];
     $sliderList = PortalModule::getSources($mid, PortalModule::SOURCE_TYPE_SLIDER);
     foreach ($sliderList as $slider) {
         showtablerow('', array('class="td25"', 'class="td28"'), array(sprintf('<input type="checkbox" class="checkbox" name="delete[]" value="%d" />', $slider['sid']), sprintf('<input type="text" class="txt" size="2" maxlength="4" name="displayorder_new[%d]" value="%d" />', $slider['sid'], $slider['displayorder']), sprintf('<input type="text" size="50" name="title_new[%d]" value="%s" />', $slider['sid'], $slider['title']), sprintf('
                 <select name="idtype_new[%d]">
                     <option value="%s" %s>%s</option>
                     <option value="%s" %s>%s</option>
                     <option value="%s" %s>%s</option>
                     <option value="%s" %s>%s</option>
                 </select>', $slider['sid'], PortalModule::SOURCE_TYPE_AID, $slider['idtype'] == PortalModule::SOURCE_TYPE_AID ? 'selected' : '', Appbyme::lang('mobcent_portal_module_source_type_aid'), PortalModule::SOURCE_TYPE_TID, $slider['idtype'] == PortalModule::SOURCE_TYPE_TID ? 'selected' : '', Appbyme::lang('mobcent_portal_module_source_type_tid'), PortalModule::SOURCE_TYPE_URL, $slider['idtype'] == PortalModule::SOURCE_TYPE_URL ? 'selected' : '', 'url', PortalModule::SOURCE_TYPE_BID, $slider['idtype'] == PortalModule::SOURCE_TYPE_BID ? 'selected' : '', Appbyme::lang('mobcent_portal_module_source_type_bid')), sprintf('<input type="text" size="50" name="id_new[%d]" value="%s" />', $slider['sid'], $slider['idtype'] == PortalModule::SOURCE_TYPE_URL ? $slider['url'] : $slider['id']), sprintf('
                 <select name="imgtype_new[%d]" %s>
                     <option value="%s" %s>%s</option>
                     <option value="%s" %s>%s</option>
                     <option value="%s" %s>%s</option>
                     <option value="%s" %s %s>%s</option>
                 </select>', $slider['sid'], $slider['imgtype'] == PortalModule::SOURCE_TYPE_BID ? 'disabled' : '', PortalModule::SOURCE_TYPE_AID, $slider['imgtype'] == PortalModule::SOURCE_TYPE_AID ? 'selected' : '', Appbyme::lang('mobcent_portal_module_source_type_aid'), PortalModule::SOURCE_TYPE_TID, $slider['imgtype'] == PortalModule::SOURCE_TYPE_TID ? 'selected' : '', Appbyme::lang('mobcent_portal_module_source_type_tid'), PortalModule::SOURCE_TYPE_URL, $slider['imgtype'] == PortalModule::SOURCE_TYPE_URL ? 'selected' : '', 'url', PortalModule::SOURCE_TYPE_BID, $slider['imgtype'] == PortalModule::SOURCE_TYPE_BID ? 'selected' : '', $slider['imgtype'] != PortalModule::SOURCE_TYPE_BID ? 'disabled' : '', Appbyme::lang('mobcent_portal_module_source_type_bid')), sprintf('<input type="text" size="50" name="imgid_new[%d]" value="%s" %s />', $slider['sid'], $slider['imgtype'] == PortalModule::SOURCE_TYPE_URL ? $slider['imgurl'] : $slider['imgid'], $slider['imgtype'] == PortalModule::SOURCE_TYPE_BID ? 'disabled' : '')));
     }
     if (count($sliderList) < MAX_PORTAL_MODULE_SLIDER_LEN) {
         showtablerow('', array('class="td25"', 'class="td28"'), array(cplang('add_new'), sprintf('<input type="text" class="txt" size="2" maxlength="4" name="new_displayorder" value="" />'), sprintf('<input type="text" size="50" name="new_title" value="" />'), sprintf('
                 <select name="new_idtype">
                     <option value="%s">%s</option>
                     <option value="%s">%s</option>
                     <option value="%s">%s</option>
                     <option value="%s">%s</option>
                 </select>', PortalModule::SOURCE_TYPE_AID, Appbyme::lang('mobcent_portal_module_source_type_aid'), PortalModule::SOURCE_TYPE_TID, Appbyme::lang('mobcent_portal_module_source_type_tid'), PortalModule::SOURCE_TYPE_URL, 'url', PortalModule::SOURCE_TYPE_BID, Appbyme::lang('mobcent_portal_module_source_type_bid')), sprintf('<input type="text" size="50" name="new_id" value="" />'), sprintf('
                 <select name="new_imgtype">
                     <option value="%s">%s</option>
                     <option value="%s">%s</option>
                     <option value="%s">%s</option>
                     <option value="%s">%s</option>
                 </select>', PortalModule::SOURCE_TYPE_AID, Appbyme::lang('mobcent_portal_module_source_type_aid'), PortalModule::SOURCE_TYPE_TID, Appbyme::lang('mobcent_portal_module_source_type_tid'), PortalModule::SOURCE_TYPE_URL, 'url', PortalModule::SOURCE_TYPE_BID, Appbyme::lang('mobcent_portal_module_source_type_bid')), sprintf('<input type="text" size="50" name="new_imgid" value="" />')));
     }
     showsubmit('portal_submit', 'submit', 'del');
     showtablefooter();
     $style = '
     <style>
         #slider_images_wrapper{width:100%;overflow:hidden;text-align:center;margin:0 auto 10px;}
         .slider_image{width:18%;height:120px;margin:0 1% 1%;display:inline-block;position: relative;border-radius:5px;}
         .slider_image img{border-radius:5px;width:100%;height:100%;position:relative;}
         .slider_image a{position: relative;width: 100%;height: 120px;display: block;}
         .slider_image span{position: relative;font-size: 14px;color: #fff;z-index: 2;text-align: center;margin-top: -20px;display: inline-block;overflow:hidden;height:20px;}
         .slider_image em{position:absolute;bottom:0;left:0;width:100%;height:20px;background:#000;opacity:0.5;}
     </style>';
     echo $style;
     showtagheader('div', 'slider_images_wrapper', true);
     $blockSliderList = array();
     foreach ($sliderList as $slider) {
         if ($slider['idtype'] == PortalModule::SOURCE_TYPE_BID) {
             $blockSliderList[$slider['id']] = $slider;
         } else {
             echo sprintf('<div class="slider_image"><a href="%s" target="_blank"><img src="%s" alt="%s"><span>%s</span><em></em></a></div>', $slider['url'], $slider['imgurl'], $slider['title'], $slider['title']);
         }
     }
     showtagfooter('div');
     if (!empty($blockSliderList)) {
         block_get(array_keys($blockSliderList));
         echo '<div align="center">';
         foreach ($blockSliderList as $slider) {
             block_display($slider['id']);
         }
         echo '</div>';
     }
 }
<?php

if (!defined('IN_DISCUZ')) {
    exit('Access Denied');
}
hookscriptoutput('viewthread');
0 || checktplrefresh('data/diy/./template/tqun//forum/viewthread.htm', './template/tqun/common/header.htm', 1352001045, 'diy', './data/template/2_diy_forum_viewthread.tpl.php', 'data/diy/./template/tqun/', 'forum/viewthread') || checktplrefresh('data/diy/./template/tqun//forum/viewthread.htm', './template/tqun/forum/viewthread_node.htm', 1352001045, 'diy', './data/template/2_diy_forum_viewthread.tpl.php', 'data/diy/./template/tqun/', 'forum/viewthread') || checktplrefresh('data/diy/./template/tqun//forum/viewthread.htm', './template/tqun/forum/viewthread_fastpost.htm', 1352001045, 'diy', './data/template/2_diy_forum_viewthread.tpl.php', 'data/diy/./template/tqun/', 'forum/viewthread') || checktplrefresh('data/diy/./template/tqun//forum/viewthread.htm', './template/tqun/common/footer.htm', 1352001045, 'diy', './data/template/2_diy_forum_viewthread.tpl.php', 'data/diy/./template/tqun/', 'forum/viewthread') || checktplrefresh('data/diy/./template/tqun//forum/viewthread.htm', './template/tqun/common/header_common.htm', 1352001045, 'diy', './data/template/2_diy_forum_viewthread.tpl.php', 'data/diy/./template/tqun/', 'forum/viewthread') || checktplrefresh('data/diy/./template/tqun//forum/viewthread.htm', './template/tqun/common/pubsearchform.htm', 1352001045, 'diy', './data/template/2_diy_forum_viewthread.tpl.php', 'data/diy/./template/tqun/', 'forum/viewthread') || checktplrefresh('data/diy/./template/tqun//forum/viewthread.htm', './template/tqun/forum/viewthread_node_body.htm', 1352001045, 'diy', './data/template/2_diy_forum_viewthread.tpl.php', 'data/diy/./template/tqun/', 'forum/viewthread') || checktplrefresh('data/diy/./template/tqun//forum/viewthread.htm', './template/default/common/seditor.htm', 1352001045, 'diy', './data/template/2_diy_forum_viewthread.tpl.php', 'data/diy/./template/tqun/', 'forum/viewthread') || checktplrefresh('data/diy/./template/tqun//forum/viewthread.htm', './template/default/common/seccheck.htm', 1352001045, 'diy', './data/template/2_diy_forum_viewthread.tpl.php', 'data/diy/./template/tqun/', 'forum/viewthread');
block_get('44,43');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
        <script src="template/tqun/js/jquery-1.7.2.js" type="text/javascript"></script>
        <script src="template/tqun/js/jquery.bxSlider.min.js" type="text/javascript"></script>
        <script src="template/tqun/js/tqun.js" type="text/javascript"></script>
        <script>window.onerror=function(){return true;};</script>
<meta http-equiv="Content-Type" content="text/html; charset=<?php 
echo CHARSET;
?>
" />
<?php 
if ($_G['config']['output']['iecompatible']) {
    ?>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE<?php 
    echo $_G['config']['output']['iecompatible'];
    ?>
" /><?php 
}
?>
<title><?php 
if (!empty($navtitle)) {
<?php

if (!defined('IN_DISCUZ')) {
    exit('Access Denied');
}
hookscriptoutput('discuz');
0 || checktplrefresh('data/diy/./template/tqun//forum/discuz.htm', './template/tqun/common/header.htm', 1352017943, 'diy', './data/template/2_diy_forum_discuz.tpl.php', 'data/diy/./template/tqun/', 'forum/discuz') || checktplrefresh('data/diy/./template/tqun//forum/discuz.htm', './template/tqun/common/footer.htm', 1352017943, 'diy', './data/template/2_diy_forum_discuz.tpl.php', 'data/diy/./template/tqun/', 'forum/discuz') || checktplrefresh('data/diy/./template/tqun//forum/discuz.htm', './template/tqun/common/header_common.htm', 1352017943, 'diy', './data/template/2_diy_forum_discuz.tpl.php', 'data/diy/./template/tqun/', 'forum/discuz') || checktplrefresh('data/diy/./template/tqun//forum/discuz.htm', './template/tqun/common/pubsearchform.htm', 1352017943, 'diy', './data/template/2_diy_forum_discuz.tpl.php', 'data/diy/./template/tqun/', 'forum/discuz');
block_get('50,51');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
        <script src="template/tqun/js/jquery-1.7.2.js" type="text/javascript"></script>
        <script src="template/tqun/js/jquery.bxSlider.min.js" type="text/javascript"></script>
        <script src="template/tqun/js/tqun.js" type="text/javascript"></script>
        <script>window.onerror=function(){return true;};</script>
<meta http-equiv="Content-Type" content="text/html; charset=<?php 
echo CHARSET;
?>
" />
<?php 
if ($_G['config']['output']['iecompatible']) {
    ?>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE<?php 
    echo $_G['config']['output']['iecompatible'];
    ?>
" /><?php 
}
?>
<title><?php 
if (!empty($navtitle)) {
<?php if(!defined('IN_DISCUZ')) exit('Access Denied'); hookscriptoutput('forumdisplay');
0
|| checktplrefresh('data/diy/./template/yunshan_vivo//forum/forumdisplay.htm', './template/default/forum/recommend.htm', 1437287928, 'diy', './data/template/6_diy_forum_forumdisplay.tpl.php', 'data/diy/./template/yunshan_vivo/', 'forum/forumdisplay')
|| checktplrefresh('data/diy/./template/yunshan_vivo//forum/forumdisplay.htm', './template/default/common/seccheck.htm', 1437287928, 'diy', './data/template/6_diy_forum_forumdisplay.tpl.php', 'data/diy/./template/yunshan_vivo/', 'forum/forumdisplay')
|| checktplrefresh('data/diy/./template/yunshan_vivo//forum/forumdisplay.htm', './template/yunshan_vivo/forum/forumdisplay_list.htm', 1437287928, 'diy', './data/template/6_diy_forum_forumdisplay.tpl.php', 'data/diy/./template/yunshan_vivo/', 'forum/forumdisplay')
|| checktplrefresh('data/diy/./template/yunshan_vivo//forum/forumdisplay.htm', './template/default/forum/forumdisplay_sort.htm', 1437287928, 'diy', './data/template/6_diy_forum_forumdisplay.tpl.php', 'data/diy/./template/yunshan_vivo/', 'forum/forumdisplay')
|| checktplrefresh('data/diy/./template/yunshan_vivo//forum/forumdisplay.htm', './template/default/forum/search_sortoption.htm', 1437287928, 'diy', './data/template/6_diy_forum_forumdisplay.tpl.php', 'data/diy/./template/yunshan_vivo/', 'forum/forumdisplay')
|| checktplrefresh('data/diy/./template/yunshan_vivo//forum/forumdisplay.htm', './template/default/forum/search_sortoption.htm', 1437287928, 'diy', './data/template/6_diy_forum_forumdisplay.tpl.php', 'data/diy/./template/yunshan_vivo/', 'forum/forumdisplay')
;
block_get('30,31,32');?><?php include template('common/header'); if($_G['forum']['ismoderator']) { ?>
<script src="<?php echo $_G['setting']['jspath'];?>forum_moderate.js?<?php echo VERHASH;?>" type="text/javascript"></script>
<?php } ?>
<style id="diy_style" type="text/css">#portal_block_30 { margin-bottom:26px !important;}#portal_block_31 { margin-bottom:26px !important;}</style>
<!--[diy=diynavtop]--><div id="diynavtop" class="area"></div><!--[/diy]-->
<div id="pt" class="bm cl">
<div class="z">
<a href="./" class="nvhm" title="首页"><?php echo $_G['setting']['bbname'];?></a><em>&raquo;</em><a href="forum.php"><?php echo $_G['setting']['navs']['2']['navname'];?></a><?php echo $navigation;?>
</div>
</div><?php echo adshow("text/wp a_t");?><div class="wp">
<!--[diy=diy1]--><div id="diy1" class="area"></div><!--[/diy]-->
</div>
<div class="boardnav">
<div id="ct" class="wp cl  ct2 ">


<div class="mn">
<div class="bm bml pbn">
<?php if($_G['forum']['banner'] && !$subforumonly) { ?><img src="<?php echo $_G['forum']['banner'];?>" alt="<?php echo $_G['forum']['name'];?>" /><?php } ?>
<div class="bm_h cl">
<div class="fl_icn_g"<?php if(!empty($_G['forum']['extra']['iconwidth']) && !empty($_G['forum']['icon'])) { ?> style="width: <?php echo $_G['forum']['extra']['iconwidth'];?>px;"<?php } ?>>
<?php if($_G['forum']['icon']) { ?>
<?php if(!defined('IN_DISCUZ')) exit('Access Denied'); hookscriptoutput('viewthread');
0
|| checktplrefresh('data/diy/./template/yunshan_vivo//forum/viewthread.htm', './template/yunshan_vivo/forum/viewthread_first_node.htm', 1437287959, 'diy', './data/template/6_diy_forum_viewthread.tpl.php', 'data/diy/./template/yunshan_vivo/', 'forum/viewthread')
|| checktplrefresh('data/diy/./template/yunshan_vivo//forum/viewthread.htm', './template/yunshan_vivo/forum/viewthread_node.htm', 1437287959, 'diy', './data/template/6_diy_forum_viewthread.tpl.php', 'data/diy/./template/yunshan_vivo/', 'forum/viewthread')
|| checktplrefresh('data/diy/./template/yunshan_vivo//forum/viewthread.htm', './template/yunshan_vivo/forum/viewthread_fastpost.htm', 1437287959, 'diy', './data/template/6_diy_forum_viewthread.tpl.php', 'data/diy/./template/yunshan_vivo/', 'forum/viewthread')
|| checktplrefresh('data/diy/./template/yunshan_vivo//forum/viewthread.htm', './template/yunshan_vivo/forum/viewthread_node_body.htm', 1437287959, 'diy', './data/template/6_diy_forum_viewthread.tpl.php', 'data/diy/./template/yunshan_vivo/', 'forum/viewthread')
|| checktplrefresh('data/diy/./template/yunshan_vivo//forum/viewthread.htm', './template/yunshan_vivo/forum/viewthread_first_node.htm', 1437287959, 'diy', './data/template/6_diy_forum_viewthread.tpl.php', 'data/diy/./template/yunshan_vivo/', 'forum/viewthread')
|| checktplrefresh('data/diy/./template/yunshan_vivo//forum/viewthread.htm', './template/yunshan_vivo/forum/viewthread_node_body.htm', 1437287959, 'diy', './data/template/6_diy_forum_viewthread.tpl.php', 'data/diy/./template/yunshan_vivo/', 'forum/viewthread')
|| checktplrefresh('data/diy/./template/yunshan_vivo//forum/viewthread.htm', './template/default/common/seditor.htm', 1437287959, 'diy', './data/template/6_diy_forum_viewthread.tpl.php', 'data/diy/./template/yunshan_vivo/', 'forum/viewthread')
|| checktplrefresh('data/diy/./template/yunshan_vivo//forum/viewthread.htm', './template/default/forum/seccheck_post.htm', 1437287959, 'diy', './data/template/6_diy_forum_viewthread.tpl.php', 'data/diy/./template/yunshan_vivo/', 'forum/viewthread')
|| checktplrefresh('data/diy/./template/yunshan_vivo//forum/viewthread.htm', './template/default/common/upload.htm', 1437287959, 'diy', './data/template/6_diy_forum_viewthread.tpl.php', 'data/diy/./template/yunshan_vivo/', 'forum/viewthread')
|| checktplrefresh('data/diy/./template/yunshan_vivo//forum/viewthread.htm', './template/yunshan_vivo/forum/viewthread_node_body.htm', 1437287959, 'diy', './data/template/6_diy_forum_viewthread.tpl.php', 'data/diy/./template/yunshan_vivo/', 'forum/viewthread')
|| checktplrefresh('data/diy/./template/yunshan_vivo//forum/viewthread.htm', './template/default/common/seccheck.htm', 1437287959, 'diy', './data/template/6_diy_forum_viewthread.tpl.php', 'data/diy/./template/yunshan_vivo/', 'forum/viewthread')
;
block_get('33,34');?>
<?php $_G['forum']['allowside'] = TRUE;?><?php include template('common/header'); $_G['setting']['recommendthread'][addtext] = '赞';?><?php $_G['setting']['recommendthread'][subtracttext] = '踩';?><script type="text/javascript">var fid = parseInt('<?php echo $_G['fid'];?>'), tid = parseInt('<?php echo $_G['tid'];?>');</script>
<?php if($modmenu['thread'] || $modmenu['post']) { ?>
<script src="<?php echo $_G['setting']['jspath'];?>forum_moderate.js?<?php echo VERHASH;?>" type="text/javascript"></script>
<?php } ?>

<script src="<?php echo $_G['setting']['jspath'];?>forum_viewthread.js?<?php echo VERHASH;?>" type="text/javascript"></script>
<script type="text/javascript">zoomstatus = parseInt(<?php echo $_G['setting']['zoomstatus'];?>);var imagemaxwidth = '<?php echo $_G['setting']['imagemaxwidth'];?>';var aimgcount = new Array();</script>

<style id="diy_style" type="text/css">#portal_block_33 { margin-bottom:26px !important;}</style>
<!--[diy=diynavtop]--><div id="diynavtop" class="area"></div><!--[/diy]-->

<?php if(!empty($_G['setting']['pluginhooks']['viewthread_top'])) echo $_G['setting']['pluginhooks']['viewthread_top'];?><?php echo adshow("text/wp a_t");?><style id="diy_style" type="text/css">#portal_block_33 { margin-bottom:26px !important;}</style>
<div class="wp">
<!--[diy=diy1]--><div id="diy1" class="area"></div><!--[/diy]-->
</div>
Esempio n. 10
0
<?php

/**
 *      [Discuz!] (C)2001-2099 Comsenz Inc.
 *      This is NOT a freeware, use is subject to license terms
 *
 *      $Id: portal_block.php 24984 2011-10-20 07:59:00Z zhangguosheng $
 */
if (!defined('IN_DISCUZ')) {
    exit('Access Denied');
}
$bid = max(0, intval($_GET['bid']));
if (empty($bid)) {
    showmessage('block_choose_bid', dreferer());
}
block_get($bid);
if (!isset($_G['block'][$bid])) {
    showmessage('block_noexist', dreferer());
}
$block =& $_G['block'][$bid];
$blockmoreurl = $block['param']['moreurl'] = isset($block['param']['moreurl']) ? $block['param']['moreurl'] : array('perpage' => 20, 'seotitle' => $block['name'], 'keywords' => '', 'description' => '');
$blocktype = $block['blockclass'];
if (!in_array($blocktype, array('forum_thread', 'portal_article', 'group_thread'), true)) {
    showmessage('block_nomore', dreferer());
}
$perpage = max(1, intval($blockmoreurl['perpage']));
$curpage = max(1, intval($_GET['page']));
$start = ($curpage - 1) * $perpage;
$count = C::t('common_block_item_data')->count_by_bid($bid);
$list = $count ? C::t('common_block_item_data')->fetch_all_by_bid($bid, 1, $start, $perpage) : array();
$multipage = $count ? multi($count, $perpage, $curpage, 'portal.php?mod=block&bid=' . $bid) : '';
<?php if(!defined('IN_DISCUZ')) exit('Access Denied'); 
block_get('45,66,85,67,68,69');?>
<link rel="stylesheet" href="./template/strong_mobile/js/show.css">
<link rel="stylesheet" href="./template/strong_mobile/index.css" type="text/css" media="all"><?php block_display('45');?><?php echo adshow("home1_mobile");?><?php block_display('66');?><div class="huandeng"><?php block_display('85');?></div><?php echo adshow("home1_mobile");?><?php block_display('67');?><?php echo adshow("home3_mobile");?><?php block_display('68');?><?php echo adshow("home4_mobile");?><?php block_display('69');?><?php echo adshow("home5_mobile");?><script src="./template/strong_mobile/js/show.js" type="text/javascript"></script>
<script type="text/javascript">
    $('.bxslider').bxSlider({
   auto: true,
   captions: true
});
</script>




<?php

if (!defined('IN_DISCUZ')) {
    exit('Access Denied');
}
hookscriptoutput('view_1');
0 || checktplrefresh('data/diy/./template/tqun//portal/view_1.htm', './template/tqun/common/header.htm', 1352009424, 'diy', './data/template/2_diy_portal_view_1.tpl.php', 'data/diy/./template/tqun/', 'portal/view_1') || checktplrefresh('data/diy/./template/tqun//portal/view_1.htm', './template/default/portal/portal_comment.htm', 1352009424, 'diy', './data/template/2_diy_portal_view_1.tpl.php', 'data/diy/./template/tqun/', 'portal/view_1') || checktplrefresh('data/diy/./template/tqun//portal/view_1.htm', './template/tqun/common/footer.htm', 1352009424, 'diy', './data/template/2_diy_portal_view_1.tpl.php', 'data/diy/./template/tqun/', 'portal/view_1') || checktplrefresh('data/diy/./template/tqun//portal/view_1.htm', './template/tqun/common/header_common.htm', 1352009424, 'diy', './data/template/2_diy_portal_view_1.tpl.php', 'data/diy/./template/tqun/', 'portal/view_1') || checktplrefresh('data/diy/./template/tqun//portal/view_1.htm', './template/tqun/common/pubsearchform.htm', 1352009424, 'diy', './data/template/2_diy_portal_view_1.tpl.php', 'data/diy/./template/tqun/', 'portal/view_1') || checktplrefresh('data/diy/./template/tqun//portal/view_1.htm', './template/default/common/seccheck.htm', 1352009424, 'diy', './data/template/2_diy_portal_view_1.tpl.php', 'data/diy/./template/tqun/', 'portal/view_1');
block_get('34,35,36,37');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
        <script src="template/tqun/js/jquery-1.7.2.js" type="text/javascript"></script>
        <script src="template/tqun/js/jquery.bxSlider.min.js" type="text/javascript"></script>
        <script src="template/tqun/js/tqun.js" type="text/javascript"></script>
        <script>window.onerror=function(){return true;};</script>
<meta http-equiv="Content-Type" content="text/html; charset=<?php 
echo CHARSET;
?>
" />
<?php 
if ($_G['config']['output']['iecompatible']) {
    ?>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE<?php 
    echo $_G['config']['output']['iecompatible'];
    ?>
" /><?php 
}
?>
<title><?php 
if (!empty($navtitle)) {
<?php

if (!defined('IN_DISCUZ')) {
    exit('Access Denied');
}
hookscriptoutput('list_1');
0 || checktplrefresh('data/diy/./template/tqun//portal/list_1.htm', './template/tqun/common/header.htm', 1352001794, 'diy', './data/template/2_diy_portal_list_1.tpl.php', 'data/diy/./template/tqun/', 'portal/list_1') || checktplrefresh('data/diy/./template/tqun//portal/list_1.htm', './template/tqun/common/footer.htm', 1352001794, 'diy', './data/template/2_diy_portal_list_1.tpl.php', 'data/diy/./template/tqun/', 'portal/list_1') || checktplrefresh('data/diy/./template/tqun//portal/list_1.htm', './template/tqun/common/header_common.htm', 1352001794, 'diy', './data/template/2_diy_portal_list_1.tpl.php', 'data/diy/./template/tqun/', 'portal/list_1') || checktplrefresh('data/diy/./template/tqun//portal/list_1.htm', './template/tqun/common/pubsearchform.htm', 1352001794, 'diy', './data/template/2_diy_portal_list_1.tpl.php', 'data/diy/./template/tqun/', 'portal/list_1');
block_get('30,31,32,33');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
        <script src="template/tqun/js/jquery-1.7.2.js" type="text/javascript"></script>
        <script src="template/tqun/js/jquery.bxSlider.min.js" type="text/javascript"></script>
        <script src="template/tqun/js/tqun.js" type="text/javascript"></script>
        <script>window.onerror=function(){return true;};</script>
<meta http-equiv="Content-Type" content="text/html; charset=<?php 
echo CHARSET;
?>
" />
<?php 
if ($_G['config']['output']['iecompatible']) {
    ?>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE<?php 
    echo $_G['config']['output']['iecompatible'];
    ?>
" /><?php 
}
?>
<title><?php 
if (!empty($navtitle)) {
Esempio n. 14
0
<?php if(!defined('IN_DISCUZ')) exit('Access Denied'); hookscriptoutput('index');
block_get('18,19,20,21,22,28,29,23,24,25,26,27');?><?php include template('common/header'); ?><style id="diy_style" type="text/css"></style>
<div class="banner_bg cl">
<div class="banner_box">
<!--[diy=diy_topfocus]--><div id="diy_topfocus" class="area"><div id="frameobzao2" class="frame move-span cl frame-1"><div id="frameobzao2_left" class="column frame-1-c"><div id="frameobzao2_left_temp" class="move-span temp"></div><?php block_display('18');?></div></div></div><!--[/diy]-->
</div>
</div>
<div class="wp cl">
<div class="diy_top cl">
<!--[diy=top_left]--><div id="top_left" class="area"><div id="framea1E21a" class="xfs xfs_nbd frame move-span cl frame-1"><div id="framea1E21a_left" class="column frame-1-c"><div id="framea1E21a_left_temp" class="move-span temp"></div><?php block_display('19');?><?php block_display('20');?></div></div><div id="frameyRb0Tx" class="xfs xfs_nbd frame move-span cl frame-1"><div class="title frame-title"><span class="titletext">V粉评测</span></div><div id="frameyRb0Tx_left" class="column frame-1-c"><div id="frameyRb0Tx_left_temp" class="move-span temp"></div><?php block_display('21');?><?php block_display('22');?></div></div></div><!--[/diy]-->
<div class="top_right">
<?php if($_G['setting']['search'] && $_G['setting']['srchhotkeywords']) { ?>
<div id="srchhot" class="sd_box bm">
<div class="bm_h cl">
<h1 class="xw1">热门标签</h1>
</div>
<div class="bm_c"><?php $i=1;?><?php if(is_array($_G['setting']['srchhotkeywords'])) foreach($_G['setting']['srchhotkeywords'] as $val) { if(($val=trim($val)) && $i < 16) { $valenc=rawurlencode($val);?><?php
$__FORMHASH = FORMHASH;$srchhotkeywords[] = <<<EOF


EOF;
 if(!empty($searchparams['url'])) { 
$srchhotkeywords[] .= <<<EOF

<a href="{$searchparams['url']}?q={$valenc}&source=hotsearch{$srchotquery}" target="_blank" class="keyword{$i}" sc="1">{$val}</a>

EOF;
 } else { 
$srchhotkeywords[] .= <<<EOF

<a href="search.php?mod=forum&amp;srchtxt={$valenc}&amp;formhash={$__FORMHASH}&amp;searchsubmit=true&amp;source=hotsearch" target="_blank" class="keyword{$i}" sc="1">{$val}</a>
Esempio n. 15
0
<?php if(!defined('IN_DISCUZ')) exit('Access Denied'); hookscriptoutput('discuz');
block_get('15,16,17');?>
<?php $_G['setting']['forumallowside'] = TRUE;?><?php include template('common/header'); ?><div id="pt" class="bm cl">
<?php if(empty($gid) && $announcements) { ?>
<div class="y">
<div id="an">
<dl class="cl">
<dt class="z xw1">公告:&nbsp;</dt>
<dd>
<div id="anc"><ul id="ancl"><?php echo $announcements;?></ul></div>
</dd>
</dl>
</div>
<script type="text/javascript">announcement();</script>
</div>
<?php } ?>
<div class="z">
<a href="./" class="nvhm" title="首页"><?php echo $_G['setting']['bbname'];?></a><em>&raquo;</em><a href="forum.php"><?php echo $_G['setting']['navs']['2']['navname'];?></a><?php echo $navigation;?>
</div>
<div class="z"><?php if(!empty($_G['setting']['pluginhooks']['index_status_extra'])) echo $_G['setting']['pluginhooks']['index_status_extra'];?></div>
</div>


<?php if(empty($gid)) { ?><?php echo adshow("text/wp a_t");?><?php } ?>

<style id="diy_style" type="text/css"></style>

<?php if(empty($gid)) { ?>
<div class="wp">
<!--[diy=diy1]--><div id="diy1" class="area"></div><!--[/diy]-->
</div>
Esempio n. 16
0
<?php if(!defined('IN_DISCUZ')) exit('Access Denied'); hookscriptoutput('index');
0
|| checktplrefresh('data/diy/./template/wekei_news_140810_sim//portal/index.htm', './template/wekei_news_140810_sim/common/header.htm', 1448168151, 'diy', './data/template/2_diy_portal_index.tpl.php', 'data/diy/./template/wekei_news_140810_sim/', 'portal/index')
|| checktplrefresh('data/diy/./template/wekei_news_140810_sim//portal/index.htm', './template/wekei_news_140810_sim/common/footer.htm', 1448168151, 'diy', './data/template/2_diy_portal_index.tpl.php', 'data/diy/./template/wekei_news_140810_sim/', 'portal/index')
|| checktplrefresh('data/diy/./template/wekei_news_140810_sim//portal/index.htm', './template/default/common/header_common.htm', 1448168151, 'diy', './data/template/2_diy_portal_index.tpl.php', 'data/diy/./template/wekei_news_140810_sim/', 'portal/index')
|| checktplrefresh('data/diy/./template/wekei_news_140810_sim//portal/index.htm', './template/default/common/header_qmenu.htm', 1448168151, 'diy', './data/template/2_diy_portal_index.tpl.php', 'data/diy/./template/wekei_news_140810_sim/', 'portal/index')
|| checktplrefresh('data/diy/./template/wekei_news_140810_sim//portal/index.htm', './template/wekei_news_140810_sim/common/vk_top_search_sim.htm', 1448168151, 'diy', './data/template/2_diy_portal_index.tpl.php', 'data/diy/./template/wekei_news_140810_sim/', 'portal/index')
;
block_get('4,20,34,50,51,48,54,46,17,31,32,10,35,59,60,61,3');?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET;?>" />
<?php if($_G['config']['output']['iecompatible']) { ?><meta http-equiv="X-UA-Compatible" content="IE=EmulateIE<?php echo $_G['config']['output']['iecompatible'];?>" /><?php } ?>
<title><?php if(!empty($navtitle)) { ?><?php echo $navtitle;?> - <?php } if(empty($nobbname)) { ?> <?php echo $_G['setting']['bbname'];?> - <?php } ?> 北京未来之家</title>
<?php echo $_G['setting']['seohead'];?>

<meta name="keywords" content="<?php if(!empty($metakeywords)) { echo dhtmlspecialchars($metakeywords); } ?>" />
<meta name="description" content="<?php if(!empty($metadescription)) { echo dhtmlspecialchars($metadescription); ?> <?php } if(empty($nobbname)) { ?>,<?php echo $_G['setting']['bbname'];?><?php } ?>" />
<meta name="generator" content="Discuz! <?php echo $_G['setting']['version'];?>" />
<meta name="author" content="Discuz! Team and Comsenz UI Team" />
<meta name="copyright" content="2001-2013 Comsenz Inc." />
<meta name="MSSmartTagsPreventParsing" content="True" />
<meta http-equiv="MSThemeCompatible" content="Yes" />
<base href="<?php echo $_G['siteurl'];?>" /><link rel="stylesheet" type="text/css" href="data/cache/style_2_common.css?<?php echo VERHASH;?>" /><?php if($_G['uid'] && isset($_G['cookie']['extstyle']) && strpos($_G['cookie']['extstyle'], TPLDIR) !== false) { ?><link rel="stylesheet" id="css_extstyle" type="text/css" href="<?php echo $_G['cookie']['extstyle'];?>/style.css" /><?php } elseif($_G['style']['defaultextstyle']) { ?><link rel="stylesheet" id="css_extstyle" type="text/css" href="<?php echo $_G['style']['defaultextstyle'];?>/style.css" /><?php } ?><script type="text/javascript">var STYLEID = '<?php echo STYLEID;?>', STATICURL = '<?php echo STATICURL;?>', IMGDIR = '<?php echo IMGDIR;?>', VERHASH = '<?php echo VERHASH;?>', charset = '<?php echo CHARSET;?>', discuz_uid = '<?php echo $_G['uid'];?>', cookiepre = '<?php echo $_G['config']['cookie']['cookiepre'];?>', cookiedomain = '<?php echo $_G['config']['cookie']['cookiedomain'];?>', cookiepath = '<?php echo $_G['config']['cookie']['cookiepath'];?>', showusercard = '<?php echo $_G['setting']['showusercard'];?>', attackevasive = '<?php echo $_G['config']['security']['attackevasive'];?>', disallowfloat = '<?php echo $_G['setting']['disallowfloat'];?>', creditnotice = '<?php if($_G['setting']['creditnotice']) { ?><?php echo $_G['setting']['creditnames'];?><?php } ?>', defaultstyle = '<?php echo $_G['style']['defaultextstyle'];?>', REPORTURL = '<?php echo $_G['currenturl_encode'];?>', SITEURL = '<?php echo $_G['siteurl'];?>', JSPATH = '<?php echo $_G['setting']['jspath'];?>', CSSPATH = '<?php echo $_G['setting']['csspath'];?>', DYNAMICURL = '<?php echo $_G['dynamicurl'];?>';</script>
<script src="<?php echo $_G['setting']['jspath'];?>common.js?<?php echo VERHASH;?>" type="text/javascript"></script>
<?php if(empty($_GET['diy'])) { $_GET['diy'] = '';?><?php } if(!isset($topic)) { $topic = array();?><?php } ?>
<meta name="application-name" content="<?php echo $_G['setting']['bbname'];?>" />
<meta name="msapplication-tooltip" content="<?php echo $_G['setting']['bbname'];?>" />
<?php if($_G['setting']['portalstatus']) { ?>
<meta name="msapplication-task" content="name=<?php echo $_G['setting']['navs']['1']['navname'];?>;action-uri=<?php echo !empty($_G['setting']['domain']['app']['portal']) ? 'http://'.$_G['setting']['domain']['app']['portal'] : $_G['siteurl'].'portal.php'; ?>;icon-uri=<?php echo $_G['siteurl'];?><?php echo IMGDIR;?>/portal.ico" />
Esempio n. 17
0
<?php if(!defined('IN_DISCUZ')) exit('Access Denied'); hookscriptoutput('list_2');
block_get('85,86,87,88,89');?><?php include template('common/header'); $list = array();?><?php $wheresql = category_get_wheresql($cat);?><?php $list = category_get_list($cat, $wheresql, $page);?><link rel="stylesheet" type="text/css" href="template/xinglan_c3/common/index.css">

<style id="diy_style" type="text/css"></style>
<div class="wp">

<div id="pt" class="bm cl">
<div class="z">
<a href="./" class="nvhm" title="首页"><?php echo $_G['setting']['bbname'];?></a> <a href="portal.php">&nbsp;首页</a>
<em>&rsaquo;</em><?php if(is_array($cat['ups'])) foreach($cat['ups'] as $value) { ?> <a href="<?php echo $portalcategory[$value['catid']]['caturl'];?>"><?php echo $value['catname'];?></a><em>&rsaquo;</em><?php } ?>
<?php echo $cat['catname'];?> 
</div>

</div>
<!--[diy=diyab]--><div id="diyab" class="area"><div id="frameSUWef7" class="frame move-span cl frame-1"><div id="frameSUWef7_left" class="column frame-1-c"><div id="frameSUWef7_left_temp" class="move-span temp"></div><?php block_display('85');?></div></div></div><!--[/diy]-->
</div><?php echo adshow("text/wp a_t");?><div id="ct" class="ct2 wp cl">
<div class="mn"><?php echo adshow("articlelist/mbm hm/1");?><?php echo adshow("articlelist/mbm hm/2");?><div class="bm2">
<div class="tttop">
<div class="bm_h cl">
<?php if($_G['setting']['rssstatus'] && !$_GET['archiveid']) { ?><a href="portal.php?mod=rss&amp;catid=<?php echo $cat['catid'];?>" class="y xi2 rss" target="_blank" title="RSS">我要订阅</a><?php } if(($_G['group']['allowpostarticle'] || $_G['group']['allowmanagearticle'] || $categoryperm[$catid]['allowmanage'] || $categoryperm[$catid]['allowpublish']) && empty($cat['disallowpublish'])) { ?>
<a href="portal.php?mod=portalcp&amp;ac=article&amp;catid=<?php echo $cat['catid'];?>" class="y xi2 addnew">发布文章</a>
<?php } ?>
<h1 class="xs2"><?php echo $cat['catname'];?>列表</h1>
</div>
<?php if($cat['subs']) { ?>
<div class="bm_c bbda">
下级分类:&nbsp;&nbsp;<?php $i = 1;?><?php if(is_array($cat['subs'])) foreach($cat['subs'] as $value) { if($i != 1) { ?><span class="pipe">|</span><?php } ?><a href="<?php echo $portalcategory[$value['catid']]['caturl'];?>" class="xi2"><?php echo $value['catname'];?></a><?php $i--;?><?php } ?>
</div>
<?php } ?>
</div>
<?php

if (!defined('IN_DISCUZ')) {
    exit('Access Denied');
}
hookscriptoutput('index');
0 || checktplrefresh('data/diy/portal/index.htm', './template/default/common/header.htm', 1380628621, 'diy', './data/template/1_diy_portal_index.tpl.php', 'data/diy', 'portal/index') || checktplrefresh('data/diy/portal/index.htm', './template/default/common/footer.htm', 1380628621, 'diy', './data/template/1_diy_portal_index.tpl.php', 'data/diy', 'portal/index') || checktplrefresh('data/diy/portal/index.htm', './template/default/common/css_diy.htm', 1380628621, 'diy', './data/template/1_diy_portal_index.tpl.php', 'data/diy', 'portal/index');
block_get('1,10,11,68,2,3,4,6,5,15,14,69,71,26,7,27,9,21,8,25,24,23,22,45,13,70,29,16,19,17,20,18,28,36,67,30,31,32,33,34,35,39,37,40,38,41,43,42,44,12,46,47,48,49,51,56,54,57,55,58,59,52,53,60,61,64,65,62,63,50,66');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php 
echo CHARSET;
?>
" />
<title><?php 
if (!empty($topic['title'])) {
    echo $topic['title'];
    ?>
 <?php 
}
if (!empty($_G['home_tpl_titles'])) {
    if (is_array($_G['home_tpl_titles'])) {
        foreach ($_G['home_tpl_titles'] as $value) {
            echo $value;
            ?>
 - <?php 
        }
    }
}
<?php

if (!defined('IN_DISCUZ')) {
    exit('Access Denied');
}
hookscriptoutput('index');
0 || checktplrefresh('data/diy/./template/tqun//portal/index.htm', './template/tqun/common/header.htm', 1352001623, 'diy', './data/template/2_diy_portal_index.tpl.php', 'data/diy/./template/tqun/', 'portal/index') || checktplrefresh('data/diy/./template/tqun//portal/index.htm', './template/tqun/common/footer.htm', 1352001623, 'diy', './data/template/2_diy_portal_index.tpl.php', 'data/diy/./template/tqun/', 'portal/index') || checktplrefresh('data/diy/./template/tqun//portal/index.htm', './template/tqun/common/header_common.htm', 1352001623, 'diy', './data/template/2_diy_portal_index.tpl.php', 'data/diy/./template/tqun/', 'portal/index') || checktplrefresh('data/diy/./template/tqun//portal/index.htm', './template/tqun/common/pubsearchform.htm', 1352001623, 'diy', './data/template/2_diy_portal_index.tpl.php', 'data/diy/./template/tqun/', 'portal/index');
block_get('8,3,4,5,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,6,24,25,26,27,28,29,7');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
        <script src="template/tqun/js/jquery-1.7.2.js" type="text/javascript"></script>
        <script src="template/tqun/js/jquery.bxSlider.min.js" type="text/javascript"></script>
        <script src="template/tqun/js/tqun.js" type="text/javascript"></script>
        <script>window.onerror=function(){return true;};</script>
<meta http-equiv="Content-Type" content="text/html; charset=<?php 
echo CHARSET;
?>
" />
<?php 
if ($_G['config']['output']['iecompatible']) {
    ?>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE<?php 
    echo $_G['config']['output']['iecompatible'];
    ?>
" /><?php 
}
?>
<title><?php 
if (!empty($navtitle)) {
Esempio n. 20
0
<?php if(!defined('IN_DISCUZ')) exit('Access Denied'); hookscriptoutput('index');
block_get('109,87,76,72,100,104,106,94,93,95,90,91,92');?>
<?php include template('common/header'); ?><style id="diy_style" type="text/css">#framef2zVXw {  border:#cccccc 1px solid !important;margin-top:15px !important;margin-right:5px !important;margin-bottom:6px !important;margin-left:5px !important;}#framef2zVXw .dxb_bc {  font-size:14px !important;}#portal_block_76 {  border:#cccccc 0px solid !important;margin-top:20px !important;margin-right:20px !important;margin-bottom:20px !important;margin-left:10px !important;}#portal_block_72 {  border:#cccccc 0px solid !important;margin-top:20px !important;margin-right:20px !important;margin-bottom:20px !important;margin-left:10px !important;}#portal_block_87 {  background-color:#ffffff !important;background-image:none !important;margin-top:10px !important;margin-right:20px !important;margin-bottom:20px !important;margin-left:10px !important;}#frameYb7O68 {  border:#cccccc 1px solid !important;margin:5px !important;background-color:#ffffff !important;background-image:none !important;}#portal_block_90 {  border:#000000 0px !important;margin-top:0px !important;margin-right:0px !important;margin-bottom:0px !important;margin-left:50px !important;background-color:#ffffff !important;background-image:none !important;}#portal_block_90 .dxb_bc {  margin:0px !important;}#portal_block_91 {  margin-top:0px !important;margin-right:0px !important;margin-bottom:0px !important;margin-left:50px !important;background-color:#ffffff !important;background-image:none !important;border:#cccccc 0px solid !important;}#portal_block_91 .dxb_bc {  margin:0px !important;}#portal_block_92 {  margin-top:0px !important;margin-right:0px !important;margin-bottom:0px !important;margin-left:50px !important;background-color:#ffffff !important;background-image:none !important;}#portal_block_92 .dxb_bc {  margin:0px !important;}#frameI25PR8 {  border:#cccccc 0px solid !important;}#framefRJzn1 {  border:#cccccc 0px solid !important;margin-top:0px !important;margin-right:10px !important;margin-bottom:0px !important;margin-left:0px !important;}#framefRJzn1 .dxb_bc {  font-size:14px !important;}#portal_block_93 {  background-color:#ffffff !important;background-image:none !important;margin-top:10px !important;margin-right:0px !important;margin-bottom:10px !important;margin-left:0px !important;}#portal_block_93 .dxb_bc {  margin-top:5px !important;margin-bottom:5px !important;}#portal_block_94 {  background-color:#ffffff !important;background-image:none !important;margin-top:10px !important;margin-right:0px !important;margin-bottom:10px !important;margin-left:0px !important;}#portal_block_94 .dxb_bc {  margin-top:5px !important;margin-right:0px !important;margin-bottom:5px !important;margin-left:0px !important;}#portal_block_95 {  background-color:#ffffff !important;background-image:none !important;border:#333333 !important;margin-top:10px !important;margin-right:0px !important;margin-bottom:10px !important;margin-left:0px !important;}#portal_block_95 .dxb_bc {  font-size:14px !important;margin-top:5px !important;margin-right:0px !important;margin-bottom:5px !important;margin-left:0px !important;}#frame4x84FW {  margin:0px !important;background-color:#ffffff !important;background-image:none !important;}#portal_block_100 {  margin-top:3px !important;margin-right:10px !important;margin-bottom:10px !important;margin-left:10px !important;border:#cccccc 1px solid !important;background-color:#ffffff !important;background-image:none !important;}#portal_block_100 .dxb_bc {  margin-top:10px !important;margin-right:5px !important;margin-bottom:5px !important;margin-left:5px !important;color:#dca01e !important;}#portal_block_87 .dxb_bc {  font-size:14px !important;margin:10px !important;}#portal_block_76 .dxb_bc {  font-size:14px !important;margin:10px !important;}#portal_block_72 .dxb_bc {  font-size:14px !important;margin:10px !important;}#portal_block_104 {  border:#cccccc 1px solid !important;margin-top:3px !important;margin-right:10px !important;margin-bottom:10px !important;margin-left:10px !important;}#portal_block_104 .dxb_bc {  margin-top:10px !important;margin-right:5px !important;margin-bottom:5px !important;margin-left:5px !important;}#portal_block_106 {  border:#cccccc 1px solid !important;margin-top:3px !important;margin-right:10px !important;margin-bottom:10px !important;margin-left:10px !important;}#portal_block_106 .dxb_bc {  color:#dca01e !important;margin-top:10px !important;margin-right:5px !important;margin-bottom:5px !important;margin-left:5px !important;}#portal_block_100 .dxb_bc a {  font-size:14px !important;}#portal_block_104 .dxb_bc a {  font-size:14px !important;}#portal_block_106 .dxb_bc a {  font-size:14px !important;}#frameI25PR8 .dxb_bc {  font-size:14px !important;}#portal_block_109 {  border:#cccccc 0px solid !important;margin:0px !important;}#portal_block_109 .dxb_bc {  margin-top:3px !important;margin-right:0px !important;margin-bottom:0px !important;margin-left:3px !important;}</style>
<link href="./template/kym_xiaomi/style/css/cn_index_v2.css" rel="stylesheet" type="text/css" />
<link href="./template/kym_xiaomi/style/css/xiaomi_default_v2.css" rel="stylesheet" type="text/css" />
<script src="./template/kym_xiaomi/style/js/comm.js" type="text/javascript"></script>

<div class="wp">
<!--[diy=diy1]--><div id="diy1" class="area"></div><!--[/diy]-->
</div>

 <!-- main start --> 
<div class="main">
<div class="banner box"></div><!--幻灯片--> 
<!--[diy=diyxiaoyu]--><div id="diyxiaoyu" class="area"><div id="framef2zVXw" class=" frame move-span cl frame-1-2"><div id="framef2zVXw_left" class="column frame-1-2-l"><div id="framef2zVXw_left_temp" class="move-span temp"></div><?php block_display('109');?></div><div id="framef2zVXw_center" class="column frame-1-2-r"><div id="framef2zVXw_center_temp" class="move-span temp"></div><?php block_display('87');?><?php block_display('76');?><?php block_display('72');?></div></div><div id="frameYb7O68" class=" frame move-span cl frame-1-2"><div id="frameYb7O68_left" class="column frame-1-2-l"><div id="frameYb7O68_left_temp" class="move-span temp"></div><?php block_display('100');?><?php block_display('104');?><?php block_display('106');?></div><div id="frameYb7O68_center" class="column frame-1-2-r"><div id="frameYb7O68_center_temp" class="move-span temp"></div><div id="frame4x84FW" class=" frame move-span cl frame-3-1"><div id="frame4x84FW_left" class="column frame-3-1-l"><div id="frame4x84FW_left_temp" class="move-span temp"></div><div id="framefRJzn1" class=" frame move-span cl frame-1"><div class="title frame-title" style='background-image:none;background-repeat:repeat;background-color:rgb(186, 210, 197);'><span class="titletext" style="font-size:16px;margin-left:20px;color:rgb(255, 255, 255);">全部资讯</span></div><div id="framefRJzn1_left" class="column frame-1-c"><div id="framefRJzn1_left_temp" class="move-span temp"></div><?php block_display('94');?><?php block_display('93');?><?php block_display('95');?></div></div></div><div id="frame4x84FW_center" class="column frame-3-1-r"><div id="frame4x84FW_center_temp" class="move-span temp"></div><div id="frameI25PR8" class=" frame move-span cl frame-1"><div class="title frame-title" style='background-image:none;background-repeat:repeat;background-color:rgb(186, 210, 197);'><span class="titletext" style="font-size:16px;margin-left:20px;color:rgb(255, 255, 255);">专家一览</span></div><div id="frameI25PR8_left" class="column frame-1-c"><div id="frameI25PR8_left_temp" class="move-span temp"></div><?php block_display('90');?></div></div><?php block_display('91');?><?php block_display('92');?></div></div></div></div></div><!--[/diy]-->   

<!--左侧新闻-->
         
<div class="left box">
<!--[diy=diytopLine]--><div id="diytopLine" class="area"></div><!--[/diy]-->




        <?php include template('common/footer'); ?>
Esempio n. 21
0
<?php if(!defined('IN_DISCUZ')) exit('Access Denied'); hookscriptoutput('index');
block_get('49,48,54,52,53,50,51,80,55,56,57,58,59,60,61,62,63,71,72,73,68,69,70,65,66,67,74,75,76,77,78,79,64');?><?php include template('common/header'); ?><style id="diy_style" type="text/css"></style>
<link rel="stylesheet" type="text/css" href="template/xinglan_c3/common/index.css">
<div class="wp"> 

<script src="template/xinglan_c3/image/jquery.min.js" type="text/javascript" ></script>
<script type="text/javascript">
 var mtmt = jQuery.noConflict();
</script>

<script src="template/xinglan_c3/image/jquery-1.6.4.min.js" type="text/javascript" ></script>
<script type="text/javascript">
   var jiaju = jQuery.noConflict();

jiaju(document).ready(function(){

jiaju('.jjlist .listcont').hide();

jiaju('.jjlist .listtt').hover(function(){

jiaju(this).addClass('hover').siblings('.listtt').removeClass('hover');


jiaju(this).next('.listcont').show()

.siblings('.listcont').hide();

});

jiaju('.jjlist').hover(function(){
},function(){
<?php if(!defined('IN_DISCUZ')) exit('Access Denied'); 
block_get('92,94');?>
<!--//幻灯片-->
<div class="scroll">
<div id="slide_01" style="width: 480px;"><?php block_display('92');?></div>
    <div id="slide_01_dot"></div>
    <div class="scroll_left" id="LeftArr"></div>
    <div class="scroll_right" id="RightArr"></div>
</div>


<!--//九板块-->
<div class="zdybkli"> <?php block_display('94');?></div>