Ejemplo n.º 1
0
 public function getSignedCombo()
 {
     $info = $this->getInfo();
     return Security::getSignedCombo($info['id']);
 }
Ejemplo n.º 2
0
 public function getSignedCombo()
 {
     $id = $this->getUserId();
     // Spreed WebRTC uses colons as a delimiter for the useridcombo.
     // As the user id might contain colons (if it's a cloud id), we need to
     // replace it with a non-valid URL character, e.g. a pipe (|).
     // The reverse happens in the 'displayUserid' filter of owncloud.js
     $id = str_replace(':', '|', $id);
     return Security::getSignedCombo($id);
 }