Files
thinksaas_lmve/app/location/action/index.php
T
2023-06-22 13:33:25 +08:00

21 lines
468 B
PHP

<?php
defined('IN_TS') or die('Access Denied.');
$userid = aac('user')->isLogin();
$strUser = aac('user')->getSimpleUser($userid);
if($strUser['locationid']==0){
$arrLocation = $new['location']->findAll('location');
if($arrLocation==''){
tsNotice('同城未做配置,暂时还不能加入!');
}
$title = '选择加入同城';
include template('index');
exit;
}
header('Location: '.tsUrl('location','show',array('id'=>$strUser['locationid'])));
exit;