function og_insert_group in Organic groups 5.7
Same name and namespace in other branches
- 5.8 og.module \og_insert_group()
- 5 og.module \og_insert_group()
- 5.2 og.module \og_insert_group()
- 5.3 og.module \og_insert_group()
- 6.2 og.module \og_insert_group()
- 6 og.module \og_insert_group()
2 calls to og_insert_group()
- og_nodeapi in ./
og.module - Implementation of hook_nodeapi().
- og_update_group in ./
og.module
File
- ./
og.module, line 1309
Code
function og_insert_group($node) {
$sql = "INSERT INTO {og} (nid, theme, selective, description, register, directory, notification, language, private) VALUES (%d, '%s', %d, '%s', %d, %d, %d, '%s', %d)";
db_query($sql, $node->nid, $node->og_theme, $node->og_selective, $node->og_description, $node->og_register, $node->og_directory, $node->og_notification, $node->og_language, $node->og_private);
}