You are here

public function ForcePasswordChangeMapperInterface::getNonPendingUserIds in Force Password Change 2.0.x

Same name and namespace in other branches
  1. 8 src/Mapper/ForcePasswordChangeMapperInterface.php \Drupal\force_password_change\Mapper\ForcePasswordChangeMapperInterface::getNonPendingUserIds()

Retrieve the User IDs of all users in the given role without a pending forced password change.

Parameters

bool|string $rid: The Role ID of the role to be checked. Set to FALSE to retrieve the UIDs of all authenticated users.

Return value

array An array of User IDs for users in the given role who do not have a pending forced password change.

1 method overrides ForcePasswordChangeMapperInterface::getNonPendingUserIds()
ForcePasswordChangeMapper::getNonPendingUserIds in src/Mapper/ForcePasswordChangeMapper.php
Retrieve the User IDs of all users in the given role without a pending forced password change.

File

src/Mapper/ForcePasswordChangeMapperInterface.php, line 129

Class

ForcePasswordChangeMapperInterface

Namespace

Drupal\force_password_change\Mapper

Code

public function getNonPendingUserIds($rid = FALSE);