48 lines
1.8 KiB
PHP
48 lines
1.8 KiB
PHP
<?php include 'header.html.php';?>
|
|
<?php js::set('tableTree', $tableTree);?>
|
|
<div id='mainContent' class='main-row'>
|
|
<div class='side-col' id='sidebar'>
|
|
<div class='cell module-tree'>
|
|
<div class="panel panel-sm with-list">
|
|
<div class='panel-heading'><i class='icon-list'></i> <strong><?php echo $lang->dev->dbList?></strong></div>
|
|
<div id="tableTree" class="menu-active-primary menu-hover-primary"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class='main-col main-content module-col'>
|
|
<?php if($selectedTable):?>
|
|
<div class='detail module-content'>
|
|
<div class='detail-title'><?php echo $selectedTable?></div>
|
|
<div class='detail-content'>
|
|
<table class="table table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th class='w-id'><?php echo $lang->dev->fields['id']?></th>
|
|
<th><?php echo $lang->dev->fields['name']?></th>
|
|
<th><?php echo $lang->dev->fields['desc']?></th>
|
|
<th><?php echo $lang->dev->fields['type']?></th>
|
|
<th><?php echo $lang->dev->fields['length']?></th>
|
|
<th><?php echo $lang->dev->fields['null']?></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php $i = 1;?>
|
|
<?php foreach($fields as $key => $field):?>
|
|
<tr>
|
|
<td><?php echo $i;?></td>
|
|
<td><?php echo $key;?></td>
|
|
<td><?php echo $field['name'];?></td>
|
|
<td><?php echo $field['type'];?></td>
|
|
<td><?php echo isset($field['options']['max']) ? $field['options']['max'] : '';?></td>
|
|
<td><?php echo $field['null'];?></td>
|
|
</tr>
|
|
<?php $i++; endforeach?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<?php endif;?>
|
|
</div>
|
|
</div>
|
|
<?php include '../../common/view/footer.html.php';?>
|