diff --git a/core/modules/user/config/install/tour.tour.people.yml b/core/modules/user/config/install/tour.tour.people.yml new file mode 100644 index 0000000..3ac8356 --- /dev/null +++ b/core/modules/user/config/install/tour.tour.people.yml @@ -0,0 +1,48 @@ +id: people +module: user +label: People +status: true +langcode: en +routes: + - + route_name: entity.user.collection +tips: + people-main: + id: people-main + plugin: text + label: 'Managing users' + body: 'View and edit user accounts.' + weight: 1 + people-add: + id: people-add + plugin: text + label: 'Add a user' + body: 'Create a new user account.' + weight: 2 + attributes: + data-class: action-links + people-filter: + id: people-filter + plugin: text + label: 'Search for users' + body: 'Find users by applying filters.' + weight: 3 + attributes: + data-id: views-exposed-form-user-admin-people-page-1 + people-operations: + id: people-operations + plugin: text + label: 'Update accounts' + body: 'Select one or more users via the checkboxes to apply changes to the accounts.' + weight: 4 + attributes: + data-id: edit-submit--2 + people-edit: + id: people-edit + plugin: text + label: 'Edit user account' + body: 'Make changes to one user account.' + weight: 5 + location: left + attributes: + data-class: dropbutton-widget diff --git a/core/modules/user/src/Tests/UserAdminTourTest.php b/core/modules/user/src/Tests/UserAdminTourTest.php new file mode 100644 index 0000000..8bd29a5 --- /dev/null +++ b/core/modules/user/src/Tests/UserAdminTourTest.php @@ -0,0 +1,42 @@ + array()); + + /** + * The permissions required for a logged in user to test tour tips. + * + * @var array + * A list of permissions. + */ + protected $permissions = array('access tour', 'administer users'); + +}