function gdpr_random_sentence in General Data Protection Regulation 7
Random sentence generator.
Deprecated
in Drupal 7.x-1.0-alpha6 and will be removed before 7.x-1.0. Use GdprDumpUtilRandom::sentences() instead.
File
- modules/
gdpr_dump/ gdpr_dump.module, line 272 - Module file for the GDPR Sql-Dump module.
Code
function gdpr_random_sentence($word_count) {
$random = new GdprDumpUtilRandom();
return $random
->sentences($word_count);
}