DiscuzX/upload/source/plugin/dzapp_haodai/haodai.class.php

88 lines
4.0 KiB
PHP
Raw Normal View History

2016-12-15 08:20:54 -05:00
<?php
/**
* By:cr180 QQ:250997329
* Date: 2013<EFBFBD><EFBFBD>12<EFBFBD><EFBFBD>9<EFBFBD><EFBFBD> 02:53:41
* <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ű<EFBFBD><EFBFBD>Ƚϼ<EFBFBD><EFBFBD><EFBFBD> ֻ<EFBFBD>Ƕ<EFBFBD>ȡ<EFBFBD>˲<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѻ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>õ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>б<EFBFBD>ҳ <EFBFBD><EFBFBD><EFBFBD><EFBFBD>ҳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƽ<EFBFBD><EFBFBD><EFBFBD>Ϣ
*/
!defined('IN_DISCUZ') && exit('Access Denied');
class plugin_dzapp_haodai {
function common() {
global $_G;
include_once DISCUZ_ROOT.'./data/dzapp_haodai_config.php';
$_G['cache']['plugin']['dzapp_haodai']['API_citynames_1231'] = HD_CITY;
$_G['cache']['plugin']['dzapp_haodai']['forumlisthot'] = unserialize($_G['cache']['plugin']['dzapp_haodai']['forumlisthot']);
return;
}
}
class plugin_dzapp_haodai_forum extends plugin_dzapp_haodai {
function forumdisplay_top_output() {
global $_G;
if(!in_array($_G['fid'],$_G['cache']['plugin']['dzapp_haodai']['forumlisthot'])) return;
if(file_exists(DISCUZ_ROOT.'./data/sysdata/cache_dzapp_haodai_filter_goufang.php')){
include_once DISCUZ_ROOT.'./data/sysdata/cache_dzapp_haodai_filter_goufang.php';
$goufang = $filter['filter'];
}
if(file_exists(DISCUZ_ROOT.'./data/sysdata/cache_dzapp_haodai_filter_gouche.php')){
include_once DISCUZ_ROOT.'./data/sysdata/cache_dzapp_haodai_filter_gouche.php';
$gouche = $filter['filter'];
}
if(file_exists(DISCUZ_ROOT.'./data/sysdata/cache_dzapp_haodai_filter_xiaofei.php')){
include_once DISCUZ_ROOT.'./data/sysdata/cache_dzapp_haodai_filter_xiaofei.php';
$xiaofei = $filter['filter'];
}
if(file_exists(DISCUZ_ROOT.'./data/sysdata/cache_dzapp_haodai_dkgl_'.$_G['cache']['plugin']['dzapp_haodai']['API_citynames_1231'].'.php')){
include_once DISCUZ_ROOT.'./data/sysdata/cache_dzapp_haodai_dkgl_'.$_G['cache']['plugin']['dzapp_haodai']['API_citynames_1231'].'.php';
$dkgl_article = $dkgl_article['items'];
}
if(!file_exists(DISCUZ_ROOT.'./data/sysdata/cache_dzapp_haodai_filter_goufang.php') && !file_exists(DISCUZ_ROOT.'./data/sysdata/cache_dzapp_haodai_filter_gouche.php') && !file_exists(DISCUZ_ROOT.'./data/sysdata/cache_dzapp_haodai_filter_xiaofei.php')){
return '<div style="display:none">'.
'<iframe width="0" height="0" src="plugin.php?id=dzapp_haodai"></iframe>'.
'<iframe width="0" height="0" src="plugin.php?id=dzapp_haodai&action=search&xd_type=goufang"></iframe>'.
'<iframe width="0" height="0" src="plugin.php?id=dzapp_haodai&action=search&xd_type=gouche"></iframe>'.
'<iframe width="0" height="0" src="plugin.php?id=dzapp_haodai&action=search&xd_type=xiaofei"></iframe>'.
'</div>';
}
$haodaistyle = 1;
include_once template('dzapp_haodai:hook_forum');
return $haodai_html;
}
function viewthread_postsightmlafter_output() {
global $_G,$postlist;
$return = array();
if(!in_array($_G['fid'],$_G['cache']['plugin']['dzapp_haodai']['forumlisthot'])) return;
if(file_exists(DISCUZ_ROOT.'./data/sysdata/cache_dzapp_haodai_jyfx_'.$_G['cache']['plugin']['dzapp_haodai']['API_citynames_1231'].'.php')){
include_once DISCUZ_ROOT.'./data/sysdata/cache_dzapp_haodai_jyfx_'.$_G['cache']['plugin']['dzapp_haodai']['API_citynames_1231'].'.php';
$jyfx_article = $jyfx_article['items'];
}
if(file_exists(DISCUZ_ROOT.'./data/sysdata/cache_dzapp_haodai_dkgl_'.$_G['cache']['plugin']['dzapp_haodai']['API_citynames_1231'].'.php')){
include_once DISCUZ_ROOT.'./data/sysdata/cache_dzapp_haodai_dkgl_'.$_G['cache']['plugin']['dzapp_haodai']['API_citynames_1231'].'.php';
$dkgl_article = $dkgl_article['items'];
}
if(file_exists(DISCUZ_ROOT.'./data/sysdata/cache_dzapp_haodai_dkzx_'.$_G['cache']['plugin']['dzapp_haodai']['API_citynames_1231'].'.php')){
include_once DISCUZ_ROOT.'./data/sysdata/cache_dzapp_haodai_dkzx_'.$_G['cache']['plugin']['dzapp_haodai']['API_citynames_1231'].'.php';
$dkzx_article = $dkzx_article['items'];
}
$haodai_article = array_merge($jyfx_article,$dkgl_article,$dkzx_article);
if(!$haodai_article) return;
shuffle($haodai_article);
$haodaistyle = 2;
include_once template('dzapp_haodai:hook_forum');
foreach($postlist as $key => $post){
if($post['first']){
$return[] = $haodai_html;
}else{
$return[] = '';
}
}
return $return;
}
}
?>