13 lines
222 B
PHP
13 lines
222 B
PHP
<?php
|
|
|
|
if(!defined('IN_OAOOA')) {
|
|
exit('Access Denied');
|
|
}
|
|
|
|
function build_cache_profilesetting() {
|
|
$data = C::t('user_profile_setting')->fetch_all_by_available(1);
|
|
|
|
savecache('profilesetting', $data);
|
|
}
|
|
|
|
?>
|