12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- defined('IN_IA') or exit('Access Denied');
- function webapp_switch($uniacid, $redirect = '') {
- global $_W;
- webapp_save_switch($uniacid);
- isetcookie('__uid', $_W['uid'], 7 * 86400);
- if (!empty($redirect)) {
- header('Location: ' . $redirect);
- exit;
- }
- return true;
- }
- function webapp_save_switch($uniacid) {
- global $_W, $_GPC;
- if (empty($_GPC['__switch'])) {
- $_GPC['__switch'] = random(5);
- }
- $cache_key = cache_system_key(CACHE_KEY_ACCOUNT_SWITCH, $_GPC['__switch']);
- $cache_lastaccount = cache_load($cache_key);
- if (empty($cache_lastaccount)) {
- $cache_lastaccount = array(
- 'webapp' => $uniacid,
- );
- } else {
- $cache_lastaccount['webapp'] = $uniacid;
- }
- cache_write($cache_key, $cache_lastaccount);
- isetcookie('__uniacid', $uniacid, 7 * 86400);
- isetcookie('__switch', $_GPC['__switch'], 7 * 86400);
- return true;
- }
- function webapp_can_create($uid) {
- if(user_is_founder($uid)) {
- return true;
- }
- $data = permission_user_account_num($uid);
- return isset($data['webapp_limit']) && $data['webapp_limit'] > 0;
- }
|