You are here

function drupalchat_get_random_name in DrupalChat 7.2

Same name and namespace in other branches
  1. 7 drupalchat.module \drupalchat_get_random_name()
1 call to drupalchat_get_random_name()
drupalchat_init in ./drupalchat.module
@todo Please document this function.

File

./drupalchat.module, line 1586
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;
}