dzzoffice/admin/appmarket/cloudappmarket.php
小胡 77979b6ed5
更新至V2.3.2版本,离线升级的用户需要执行升级程序 (#278)
* 优化百度编辑器,修复编辑器插入的图片不能预览问题

* 处理系统异常时登录无反应问题

* 更新至V2.3.1版本,离线升级的用户需要执行升级程序
2025-01-16 21:17:09 +08:00

71 lines
2.1 KiB
PHP

<?php
/*
* @copyright Leyun internet Technology(Shanghai)Co.,Ltd
* @license http://www.dzzoffice.com/licenses/license.txt
* @package DzzOffice
* @link http://www.dzzoffice.com
* @author zyx(zyx@dzz.cc)
*/
if (!defined('IN_DZZ') || !defined('IN_ADMIN')) {
exit('Access Denied');
}
//define('DZZ_OUTPUTED', 1);
$navtitle=lang('appname');
include libfile('function/organization');
$op='cloudappmarket';
$cloudurl = APP_CHECK_URL."index.php";
$url=APP_CHECK_URL."market/app/list";//$cloudurl."?mod=dzzmarket&op=index_ajax";
$type=empty($_GET['type'])?1:intval($_GET['type']);
$page = empty($_GET['page'])?1:intval($_GET['page']);
$keyword=trim($_GET['keyword']);
$classid=intval($_GET['classid']);
$post_data = array("siteuniqueid"=>$_G["setting"]["siteuniqueid"],"page"=>$page,"type"=>1 );
$json = curlcloudappmarket($url,$post_data);
$json = json_decode($json,true);
$list=array();
$total=0;
if( $json["status"]==1){
$list = $json["data"]["list"];
$total = $json["data"]["total"];
$perpage = $json["data"]["perpage"];
$theurl = MOD_URL."&op=cloudappmarket";
$multi=multi($total, $perpage, $page, $theurl,'pull-right');
}
//print_r($list);exit;
$local_applist=DB::fetch_all("select * from %t where 1",array('app_market'));//C::tp_t("app_market")->select();
if( $list ){
foreach($list as $k=>$v){
$list[$k]["local_appinfo"]=array();
$list[$k]["baseinfo"]=base64_encode( serialize($v) );
if( $v["identifier"] ){
foreach($local_applist as $k2=>$v3){
if($v["identifier"]==$v3["identifier"]){
$list[$k]["local_appinfo"]=$v3;
break;
}
}
}
}
}
include template('cloudappmarket');
exit;
function curlcloudappmarket( $url="",$post_data="", $token="" ){
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_HEADER, 0);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, $post_data);
$response = curl_exec($curl);
$httpCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
$errorno = curl_errno($curl);
if ($errorno) {
return($errorno);
}
return($response);
}
?>