You are here

function _mail_edit_sort_long_keys_first in Mail Editor 6

1 string reference to '_mail_edit_sort_long_keys_first'
mail_edit_mail_alter in ./mail_edit.module
Implementation of hook_mail_alter().

File

./mail_edit.module, line 111
Main file for the Mail Editor module.

Code

function _mail_edit_sort_long_keys_first($a, $b) {
  return drupal_strlen($b) - drupal_strlen($a);
}