drupal/profiles/testing/testing.install

12 lines
287 B
Plaintext

<?php
/**
* Implements hook_install().
*
* Perform actions to set up the site for this profile.
*/
function testing_install() {
// Allow visitor account creation, but with administrative approval.
variable_set('user_register', USER_REGISTER_VISITORS_ADMINISTRATIVE_APPROVAL);
}