function drupalchat_get_random_name in DrupalChat 7
Same name and namespace in other branches
- 7.2 drupalchat.module \drupalchat_get_random_name()
2 calls to drupalchat_get_random_name()
- drupalchat_get_current_guest_name in ./drupalchat.module 
- drupalchat_init in ./drupalchat.module 
- @todo Please document this function.
File
- ./drupalchat.module, line 1428 
- Module code for DrupalChat.
Code
function drupalchat_get_random_name() {
  $path = drupal_get_path('module', 'drupalchat') . "/guest_names/drupalchat_guest_random_names.txt";
  $f_contents = file($path);
  $line = trim($f_contents[rand(0, count($f_contents) - 1)]);
  return $line;
}