public function Workspace::setMembers in Opigno Moxtra 8
Same name and namespace in other branches
- 3.x src/Entity/Workspace.php \Drupal\opigno_moxtra\Entity\Workspace::setMembers()
Sets the entity's Moxtra workspace Members value.
Parameters
array $uids: The Workspace members.
Return value
$this
Overrides WorkspaceInterface::setMembers
File
- src/
Entity/ Workspace.php, line 183
Class
- Workspace
- Defines the Workspace entity.
Namespace
Drupal\opigno_moxtra\EntityCode
public function setMembers($uids) {
$this
->set('members', $uids);
return $this;
}