You are here

function fancy_login_preprocess_ssl_icon in Fancy Login 8.2

Same name and namespace in other branches
  1. 3.0.x fancy_login.module \fancy_login_preprocess_ssl_icon()

Implements hook_preprocess_ssl_icon().

File

./fancy_login.module, line 260
Holds hooks for the Fancy Login module.

Code

function fancy_login_preprocess_ssl_icon(&$variables) {
  $variables['file_url'] = file_create_url(drupal_get_path('module', 'fancy_login') . '/images/https.png');
  $variables['alt'] = t('Secure Login');
  $variables['title'] = t('This login is SSL protected');
}