Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 

28 Zeilen
1.0 KiB

  1. <div class="operation">
  2. <?php render_server_menu("databases"); ?>
  3. </div>
  4. <a href="<?php h(url("server.createDatabase")); ?>"><?php hm("create_database"); ?></a>
  5. <table bgcolor="#cccccc" cellpadding="2" cellspacing="1" width="600">
  6. <tr>
  7. <th><?php hm("name"); ?></th>
  8. <th><?php hm("size"); ?></th>
  9. <th nowrap><?php hm("storagesize"); ?></th>
  10. <th nowrap><?php hm("datasize"); ?></th>
  11. <th nowrap><?php hm("indexsize"); ?></th>
  12. <th><?php hm("collections"); ?></th>
  13. <th><?php hm("objects"); ?></th>
  14. </tr>
  15. <?php foreach ($dbs as $db):?>
  16. <tr bgcolor="#fffeee">
  17. <td width="120" valign="top"><a href="<?php h(url("db.index", array("db"=>$db["name"]))); ?>"><?php h($db["name"]);?></a></td>
  18. <td width="80"><?php h($db["diskSize"]);?></td>
  19. <td width="80"><?php h($db["storageSize"]);?></td>
  20. <td width="80"><?php h($db["dataSize"]);?></td>
  21. <td width="80"><?php h($db["indexSize"]);?></td>
  22. <td width="80"><?php h($db["collections"]);?></td>
  23. <td><?php h($db["objects"]);?></td>
  24. </tr>
  25. <?php endforeach; ?>
  26. </table>