You are here

function profanity_list_export in Profanity 7

Export a profanity_list.

Parameters

object $obj: The profanity object.

string $indent: An identifier.

Return value

string The export definition.

File

./profanity.module, line 98
Main {profanity} file.

Code

function profanity_list_export($obj, $indent = '') {
  ctools_include('export');
  $output = ctools_export_object('profanity_list', $obj, $indent);
  return $output;
}