mirror of
https://github.com/DzzXH/DzzOffice.git
synced 2026-01-22 03:06:48 +08:00
13 lines
208 B
PHP
13 lines
208 B
PHP
<?php
|
|
|
|
if(!defined('IN_DZZ')) {
|
|
exit('Access Denied');
|
|
}
|
|
|
|
function build_cache_profilesetting() {
|
|
$data = C::t('user_profile_setting')->fetch_all_by_available(1);
|
|
|
|
savecache('profilesetting', $data);
|
|
}
|
|
|
|
?>
|