35 lines
1.0 KiB
PHTML
35 lines
1.0 KiB
PHTML
<div class="show_create_results">
|
|
<h2><?= __('Showing create queries'); ?></h2>
|
|
<?php
|
|
$views = array();
|
|
$tables = array();
|
|
foreach ($db_objects as $object) {
|
|
if ($GLOBALS['dbi']->getTable($db, $object)->isView()) {
|
|
$views [] = $object;
|
|
} else {
|
|
$tables [] = $object;
|
|
}
|
|
}
|
|
?>
|
|
<?php if (! empty($tables)): ?>
|
|
<?= PMA\libraries\Template::get('database/structure/show_create_row')->render(
|
|
array(
|
|
'db' => $db,
|
|
'title' => __('Tables'),
|
|
'raw_title' => 'Table',
|
|
'db_objects' => $tables
|
|
)
|
|
) ?>
|
|
<?php endif; ?>
|
|
|
|
<?php if (! empty($views)): ?>
|
|
<?= PMA\libraries\Template::get('database/structure/show_create_row')->render(
|
|
array(
|
|
'db' => $db,
|
|
'title' => __('Views'),
|
|
'raw_title' => 'View',
|
|
'db_objects' => $views
|
|
)
|
|
) ?>
|
|
<?php endif; ?>
|
|
</div>
|