You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
362 B
18 lines
362 B
<?php
|
|
|
|
defined('IN_IA') or exit('Access Denied');
|
|
|
|
load()->model('cache');
|
|
load()->model('setting');
|
|
load()->object('cloudapi');
|
|
|
|
$dos = array('updatecache');
|
|
$do = in_array($do, $dos) ? $do : '';
|
|
|
|
if ('updatecache' == $do) {
|
|
cache_updatecache();
|
|
if ($_W['isajax']) {
|
|
iajax(0, '更新缓存成功!', '');
|
|
}
|
|
itoast('更新缓存成功', '', 'success');
|
|
}
|
|
|