You are here

public function FieldablePanelsPanesSubContext::getUIDs in Panopoly 7

Get a list of UIDs.

Return value

An array of numeric UIDs of users created by Given... steps during this scenario.

1 call to FieldablePanelsPanesSubContext::getUIDs()
FieldablePanelsPanesSubContext::cleanFPPs in modules/panopoly/panopoly_test/behat/steps/panopoly_test_fpp.behat.inc
Cleans up FPPs.

File

modules/panopoly/panopoly_test/behat/steps/panopoly_test_fpp.behat.inc, line 83
Provide Behat step-definitions for Fieldable Panels Panes.

Class

FieldablePanelsPanesSubContext

Code

public function getUIDs() {
  $uids = array();
  foreach ($this->external_users as $user) {
    $uids[] = $user->uid;
  }
  return $uids;
}