main.inc
上传用户:xiao730204
上传日期:2007-01-04
资源大小:141k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

PHP

  1. <?php
  2. /* main.inc */
  3. /* 
  4. This file drives the "portal" interface, this interface is the base level
  5. abstraction for all of the system. You'll note that this file is broken
  6. up into several layout sections :
  7. ------------------------------
  8. main.inc (this file includes all of the components)
  9. manager/toolbar.inc -
  10. ( this is the administrative toolbar )
  11. main/toolbar.inc  -
  12. ( this is the main toolbar that includes all of the module toolbars )
  13. */
  14. ?>
  15. <?php include( './templates/generic-header.inc' ); ?>
  16. <center>
  17. <table cellspacing="0" border="0" cellpadding="0" width="100%">
  18. <?php
  19.    include( './templates/main/title_row.inc' );
  20.    include( './templates/main/content_row.inc' );
  21.    $template_obj->ParseTemplate(
  22.       './templates/main/bottom_row.inc' 
  23.    ); 
  24. ?>
  25. </table>
  26. </center>
  27. <?php include( './templates/generic-footer.inc' ); ?>
  28. <!-- GENERATION COMPLETE -->