Chris@0: isSecure() ? 'SSESS' : 'SESS'); Chris@0: $this->sessionName = $prefix . substr(hash('sha256', $data), 0, 32); Chris@0: } Chris@0: Chris@0: /** Chris@0: * Returns the session name in use on the child site. Chris@0: * Chris@0: * @return string Chris@0: * The name of the session cookie. Chris@0: */ Chris@0: protected function getSessionName() { Chris@0: return $this->sessionName; Chris@0: } Chris@0: Chris@0: }