function schema_phpprint in Schema 5
Same name and namespace in other branches
- 8 schema.module \schema_phpprint()
- 6 schema.module \schema_phpprint()
- 7 schema.module \schema_phpprint()
File
- ./
schema.module, line 14
Code
function schema_phpprint($schema) {
$out = '';
foreach ($schema as $name => $table) {
$out .= schema_phpprint_table($name, $table);
}
return $out;
}