First commit
This commit is contained in:
26
source/class/helper/helper_access.php
Normal file
26
source/class/helper/helper_access.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
/**
|
||||
* [Discuz!] (C)2001-2099 Comsenz Inc.
|
||||
* This is NOT a freeware, use is subject to license terms
|
||||
*
|
||||
* $Id: helper_access.php 28057 2012-02-21 22:19:33Z zhengqingpeng $
|
||||
*/
|
||||
|
||||
if(!defined('IN_DISCUZ')) {
|
||||
exit('Access Denied');
|
||||
}
|
||||
|
||||
class helper_access {
|
||||
|
||||
public static function check_module($module) {
|
||||
$status = 0;
|
||||
$allowfuntype = array('portal', 'forum', 'friend', 'group', 'follow', 'collection', 'guide', 'feed', 'blog', 'doing', 'album', 'share', 'wall', 'homepage', 'ranklist', 'medal', 'task', 'magic', 'favorite');
|
||||
$module = in_array($module, $allowfuntype) ? trim($module) : '';
|
||||
if(!empty($module)) {
|
||||
$status = getglobal('setting/'.$module.'status');
|
||||
}
|
||||
return $status;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
Reference in New Issue
Block a user