function og_panels_ct_list_subscribers in Organic groups 5
Same name and namespace in other branches
- 5.8 includes/groupcontent.inc \og_panels_ct_list_subscribers()
- 5.3 includes/groupcontent.inc \og_panels_ct_list_subscribers()
- 5.7 includes/groupcontent.inc \og_panels_ct_list_subscribers()
- 6 includes/og.panelscontent.inc \og_panels_ct_list_subscribers()
1 string reference to 'og_panels_ct_list_subscribers'
- og_panels_panels_content_types in ./
og_panels.module - Implementation of hook_panels_content_types()
File
- includes/
groupcontent.inc, line 28
Code
function og_panels_ct_list_subscribers() {
$items['og_subscribers'] = array(
'title' => t('Group Members'),
'icon' => 'user-multiple.png',
'path' => drupal_get_path('module', 'og_panels') . '/',
'description' => t('The list of group subscribers or just group admins.'),
'required context' => new panels_required_context(t('Group'), 'group'),
'category' => array(
t('Organic groups'),
-5,
),
);
return $items;
}