You are here

function auto_login_url_convert_text in Auto Login URL 8

Same name and namespace in other branches
  1. 7 auto_login_url.module \auto_login_url_convert_text()
  2. 2.x auto_login_url.module \auto_login_url_convert_text()

Wrapper function for AutoLoginUrlCreate::convertText().

File

./auto_login_url.module, line 35
Main file for auto_login_url module.

Code

function auto_login_url_convert_text($uid, $text) {
  $alu_service = \Drupal::service('auto_login_url.create');
  return $alu_service
    ->convertText($uid, $text);
}