Created
February 19, 2011 04:49
-
-
Save sillygwailo/834830 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name = HashMask | |
description = "Implements Chris Dary's HaskMask jQuery plugin on password form elements" | |
core = 7.x |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @file | |
* Modifies password form elements by adding a HashMask. | |
* | |
* HashMask is a jQuery plugin by Chris Dary of Arc90 that | |
* adds a visual indicator as to the accuracy of the password | |
* one types in. If the person who's typing in a password | |
* knows that the visual clue is similar to what they remember, | |
* then they can be confident they've typed in the right password. | |
* | |
* @see http://lab.arc90.com/2009/07/09/hashmask-another-more-secure-experiment-in-password-masking/ | |
*/ | |
/** | |
* Implements hook_init(). | |
*/ | |
function hashmask_init() { | |
global $user; | |
$password_paths = (arg(0) == "user" && arg(2) == 'edit') || (arg(0) == 'admin' && arg(1) == 'people' && 'create'); | |
if (!$user->uid || $password_paths) { | |
drupal_add_js(drupal_get_path('module', 'hashmask') . '/js/jquery.sha1.js'); | |
drupal_add_js(drupal_get_path('module', 'hashmask') . '/js/jquery.sparkline.js'); | |
drupal_add_js(drupal_get_path('module', 'hashmask') . '/js/jquery.hashmask.js'); | |
drupal_add_js('jQuery(document).ready(function () { jQuery("input:password").hashmask(); })', | |
array('type' => 'inline', 'scope' => 'footer', 'weight' => 5) | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment