Security update for permissions_by_term
[yaffs-website] / vendor / drupal / drupal-extension / fixtures / drupal7 / modules / behat_test / behat_test.features.user_permission.inc
1 <?php
2 /**
3  * @file
4  * behat_test.features.user_permission.inc
5  */
6
7 /**
8  * Implements hook_user_default_permissions().
9  */
10 function behat_test_user_default_permissions() {
11   $permissions = array();
12
13   // Exported permission: 'create post content'.
14   $permissions['create post content'] = array(
15     'name' => 'create post content',
16     'roles' => array(),
17     'module' => 'node',
18   );
19
20   // Exported permission: 'delete any post content'.
21   $permissions['delete any post content'] = array(
22     'name' => 'delete any post content',
23     'roles' => array(),
24     'module' => 'node',
25   );
26
27   // Exported permission: 'delete own post content'.
28   $permissions['delete own post content'] = array(
29     'name' => 'delete own post content',
30     'roles' => array(),
31     'module' => 'node',
32   );
33
34   // Exported permission: 'edit any post content'.
35   $permissions['edit any post content'] = array(
36     'name' => 'edit any post content',
37     'roles' => array(),
38     'module' => 'node',
39   );
40
41   // Exported permission: 'edit own post content'.
42   $permissions['edit own post content'] = array(
43     'name' => 'edit own post content',
44     'roles' => array(),
45     'module' => 'node',
46   );
47
48   return $permissions;
49 }