function og_install in Organic groups 6.2
Same name and namespace in other branches
- 5.8 og.install \og_install()
- 5 og.install \og_install()
- 5.2 og.install \og_install()
- 5.3 og.install \og_install()
- 5.7 og.install \og_install()
- 6 og.install \og_install()
- 7.2 og.install \og_install()
- 7 og.install \og_install()
File
- ./
og.install, line 155
Code
function og_install() {
drupal_install_schema('og');
// enable standard og blocks. for custom profiles, block may not be included yet.
if (function_exists('_block_rehash')) {
_block_rehash();
}
// Need og_readme() function.
include_once dirname(__FILE__) . '/og.module';
drupal_set_message(t('Organic groups module enabled. Please see the included !readme_file for further installation instructions.', array(
'!readme_file' => og_readme(),
)));
}