'#description'=>$this->t('Enter token or string with multiple tokens'),
);
$form['check_empty']=array(
'#description'=>$this->t('Enter token or string with multiple tokens to be used as source value in the evaluation.'),
];
if($this->moduleHandler->moduleExists('token')){
$form['tokens']=[
'#title'=>$this->t('Tokens'),
'#type'=>'container',
];
$form['tokens']['help']=[
'#theme'=>'token_tree_link',
'#token_types'=>$this->getContentTokenTypes(),
'#global_types'=>TRUE,
'#dialog'=>TRUE,
];
}
else{
$form['tokens']=[
'#markup'=>$this->t("Note: You don't have the <a href='@token-url'>Token</a> module installed, so the list of available tokens isn't shown here. You don't have to install <a href='@token-url'>Token</a> to be able to use tokens, but if you have it installed, and enabled, you'll be able to enjoy an interactive tokens browser.",['@token-url'=>'https://www.drupal.org/project/token']),
'#weight'=>99,
];
}
$form['check_empty']=[
'#type'=>'checkbox',
'#title'=>t('Check if value is empty'),
'#description'=>t('@todo Add description'),
'#title'=>$this->t('Check if value is empty'),
'#description'=>$this->t('Just evaluates the replaced token as empty. Values such 0 or white spaces evaluates positive.'),