first
This commit is contained in:
55
modules/market/action/a.get_goodsData.php
Normal file
55
modules/market/action/a.get_goodsData.php
Normal file
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
if(!defined('__KIMS__')) exit;
|
||||
|
||||
checkAdmin(0);
|
||||
$result=array();
|
||||
$result['error']=false;
|
||||
|
||||
include $g['path_module'].$m.'/var/var.php';
|
||||
$g['marketvar'] = $g['path_var'].'/market.var.php';
|
||||
if (file_exists($g['marketvar'])) include_once $g['marketvar'];
|
||||
|
||||
if ($d['market']['url']) {
|
||||
include $g['path_core'].'function/rss.func.php';
|
||||
|
||||
$packageData = getUrlData($d['market']['url'].'&iframe=Y&page=client.get_goodsData&_clientu='.$g['s'].'&_clientr='.$r.'&goods='.$goods.'&id='.$d['market']['userid'].'&key='.$d['market']['key'].'&version=2&host='.$_SERVER['HTTP_HOST'].'&ip='.$_SERVER['REMOTE_ADDR'],10);
|
||||
$_contentData = explode('[CONTENT:',$packageData);
|
||||
$_contentData = explode(':CONTENT]',$_contentData[1]);
|
||||
$_contentData = $_contentData[0];
|
||||
|
||||
$_galleryData = explode('[GALLERY:',$packageData);
|
||||
$_galleryData = explode(':GALLERY]', $_galleryData[1]);
|
||||
$_galleryData = $_galleryData[0];
|
||||
|
||||
$_reviewData = explode('[REVIEW:',$packageData);
|
||||
$_reviewData = explode(':REVIEW]',$_reviewData[1]);
|
||||
$_reviewData = $_reviewData[0];
|
||||
|
||||
$_extData = explode('[LIST:',$packageData);
|
||||
$_extData = explode(':LIST]',$_extData[1]);
|
||||
$_extList = $_extData[0];
|
||||
|
||||
$_demoData = explode('[DEMO:',$packageData);
|
||||
$_demoData = explode(':DEMO]',$_demoData[1]);
|
||||
$_demoData = $_demoData[0];
|
||||
|
||||
$_asideData = explode('[ASIDE:',$packageData);
|
||||
$_asideData = explode(':ASIDE]',$_asideData[1]);
|
||||
$_asideData = $_asideData[0];
|
||||
|
||||
} else {
|
||||
$result['error']='마켓 접속정보를 확인해주세요.';
|
||||
echo json_encode($result);
|
||||
exit;
|
||||
}
|
||||
|
||||
$result['content'] = $_contentData;
|
||||
$result['gallery'] = $_galleryData;
|
||||
$result['list'] = $_extList;
|
||||
$result['review'] = $_reviewData;
|
||||
$result['demo'] = $_demoData;
|
||||
$result['aside'] = $_asideData;
|
||||
|
||||
echo json_encode($result);
|
||||
exit;
|
||||
?>
|
||||
Reference in New Issue
Block a user