function dlike_preprocess_flag in Drupal like (Flag counter) 8
Implements hook_preprocess_HOOK().
File
- ./
dlike.module, line 40
Code
function dlike_preprocess_flag(&$variables) {
// Replace the link title with any tokens.
$token = Drupal::token();
$variables['title'] = $token
->replace($variables['title'], array(
'flag_id' => $variables['flag']
->id(),
'entity_id' => $variables['flaggable']
->id(),
));
}