30 lines
720 B
PHP
30 lines
720 B
PHP
<?php
|
|
|
|
/**
|
|
* [Discuz!] (C)2001-2099 Comsenz Inc.
|
|
* This is NOT a freeware, use is subject to license terms
|
|
*
|
|
* $Id: cache_groupreadaccess.php 27076 2012-01-04 08:01:37Z chenmengshu $
|
|
*/
|
|
|
|
if(!defined('IN_DISCUZ')) {
|
|
exit('Access Denied');
|
|
}
|
|
|
|
function build_cache_groupreadaccess() {
|
|
$data = array();
|
|
$gf_data = C::t('common_usergroup_field')->fetch_readaccess_by_readaccess(0);
|
|
$ug_data = C::t('common_usergroup')->fetch_all(array_keys($gf_data));
|
|
|
|
foreach($gf_data as $key => $datarow) {
|
|
if(!$ug_data[$key]['groupid']) {
|
|
continue;
|
|
}
|
|
$datarow['grouptitle'] = $ug_data[$key]['grouptitle'];
|
|
$data[] = $datarow;
|
|
}
|
|
|
|
savecache('groupreadaccess', $data);
|
|
}
|
|
|
|
?>
|