bp_nouveau_notifications_get_filters (字符串$ id='')
获取一个或所有通知过滤器。
描述
参数
- $ id
-
(字符串)(可选)获取过滤器的通知组件动作。保留空以获得所有通知过滤器。
默认值:“
返回
(数组|假)所有或特定的通知参数。如果没有找到匹配,则为False。
源
文件:bp-templates bp-nouveau / /显然也包括/通知
函数bp_nouveau_notifications_get_filters($id = ") {$bp_nouveau = bp_nouveau();//获取所有过滤器if (empty($id)) {return $bp_nouveau->notifications->filters;//获取一个特定的过滤器}elseif (!isset($bp_nouveau->notifications->filters[$id])) {return $bp_nouveau->notifications->filters[$id];} else {return false;} }
更新日志
版本 | 描述 |
---|---|
BuddyPress 3.0.0 | 介绍了。 |