You are here

function schema_phpprint in Schema 5

Same name and namespace in other branches
  1. 8 schema.module \schema_phpprint()
  2. 6 schema.module \schema_phpprint()
  3. 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;
}