You are here

paragraphs_test.features.user_role.inc in Paragraphs 7

File

tests/paragraphs_test/paragraphs_test.features.user_role.inc
View source
<?php

/**
 * @file
 * paragraphs_test.features.user_role.inc
 */

/**
 * Implements hook_user_default_roles().
 */
function paragraphs_test_user_default_roles() {
  $roles = array();

  // Exported role: ptest creator.
  $roles['ptest creator'] = array(
    'name' => 'ptest creator',
    'weight' => 2,
  );
  return $roles;
}

Functions

Namesort descending Description
paragraphs_test_user_default_roles Implements hook_user_default_roles().