You are here

function _nodesymlinks_key2token in NodeSymlinks 6

Converts given string to token string "[string]".

Parameters

string $token:

Return value

string

1 string reference to '_nodesymlinks_key2token'
nodesymlinks_reconstruct_tokens in ./nodesymlinks.pathauto.inc
Generates tokens in right order - needed when merging tokens from different sources.

File

./nodesymlinks.pathauto.inc, line 89

Code

function _nodesymlinks_key2token($token) {
  return "[{$token}]";
}