summaryrefslogtreecommitdiff
path: root/profiles/testing/testing.install
blob: 28b26270847cfd618961bd370d287b8f76bdae8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
// $Id$

/**
 * 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);

  // Enable default permissions for system roles.
  user_role_grant_permissions(DRUPAL_ANONYMOUS_RID, array('access content'));
  user_role_grant_permissions(DRUPAL_AUTHENTICATED_RID, array('access content'));
}