function og_panels_ct_list_faces in Organic groups 5.3
Same name and namespace in other branches
- 5.8 includes/groupcontent.inc \og_panels_ct_list_faces()
- 5 includes/groupcontent.inc \og_panels_ct_list_faces()
- 5.7 includes/groupcontent.inc \og_panels_ct_list_faces()
- 6 includes/og.panelscontent.inc \og_panels_ct_list_faces()
1 string reference to 'og_panels_ct_list_faces'
- og_panels_panels_content_types in ./
og_panels.module - Implementation of hook_panels_content_types()
File
- includes/
groupcontent.inc, line 52
Code
function og_panels_ct_list_faces() {
$items['og_faces'] = array(
'title' => t('Group Faces'),
'icon' => 'user-multiple.png',
'path' => drupal_get_path('module', 'og_panels') . '/',
'description' => t('Show a grid of user pictures.'),
'required context' => new panels_required_context(t('Group'), 'group'),
'category' => array(
t('Organic groups'),
-5,
),
);
return $items;
}