OCA\Richdocuments\Db\Op::addMember PHP Method

addMember() public method

public addMember ( $esId, $memberId, $fullName, $userId, $color, $imageUrl )
    public function addMember($esId, $memberId, $fullName, $userId, $color, $imageUrl)
    {
        $op = array('optype' => 'AddMember', 'memberid' => (string) $memberId, 'timestamp' => $this->getMillisecondsAsString(), 'setProperties' => array('fullName' => $fullName, 'color' => $color, 'imageUrl' => $imageUrl, 'uid' => $userId));
        $this->insertOp($esId, $memberId, $op);
    }