stat.php 601 B

123456789101112131415161718192021222324
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | 统计页
  5. |--------------------------------------------------------------------------
  6. */
  7. $method = 'list';
  8. include(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'common.php');
  9. $view
  10. ->fetch('#list-desc', '/database.info#stat_desc')
  11. # 数据结构
  12. ->fetch('#struct', '/database.info#struct')
  13. # 搜索选择条件
  14. ->fetch('#search', '/database.stat#search')
  15. # 表格
  16. ->fetch('#table-list', '/database.stat#table')
  17. #banner
  18. ->call('manage/project/database/list:banner')
  19. # 将上边fetch的都显示出来
  20. ->display();