You are here

public function TcaSettings::setToken in Token Content Access 2.0.x

Same name and namespace in other branches
  1. 8 src/Entity/TcaSettings.php \Drupal\tca\Entity\TcaSettings::setToken()

Set the token value.

Parameters

string $token: The token is 64 length string.

Overrides TcaSettingsInterface::setToken

File

src/Entity/TcaSettings.php, line 106

Class

TcaSettings
Defines the TCA settings entity.

Namespace

Drupal\tca\Entity

Code

public function setToken($token) {
  if (!is_null($token) && (!is_string($token) || strlen($token) != 64)) {
    throw new InvalidTcaSettingException('token');
  }
  $this->token = $token;
}