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