function og_remove_admin_confirm in Organic groups 5.2
Same name and namespace in other branches
- 5.8 og.module \og_remove_admin_confirm()
- 5 og.module \og_remove_admin_confirm()
- 5.3 og.module \og_remove_admin_confirm()
- 5.7 og.module \og_remove_admin_confirm()
- 6.2 og.pages.inc \og_remove_admin_confirm()
- 6 og.module \og_remove_admin_confirm()
OG remove admin form
1 string reference to 'og_remove_admin_confirm'
- og_delete_admin in ./
og.module
File
- ./
og.module, line 558
Code
function og_remove_admin_confirm($gid, $node, $account) {
$form['gid'] = array(
'#type' => 'value',
'#value' => $gid,
);
$form['account'] = array(
'#type' => 'value',
'#value' => $account,
);
return confirm_form($form, t('Are you sure you want to remove %name as a group administrator for the group %title?', array(
'%name' => $account->name,
'%title' => $node->title,
)), "og/users/{$gid}", ' ', t('Remove'), t('Cancel'));
}