main.inc
上传用户:xiao730204
上传日期:2007-01-04
资源大小:141k
文件大小:1k
- <?php
- /* main.inc */
- /*
- This file drives the "portal" interface, this interface is the base level
- abstraction for all of the system. You'll note that this file is broken
- up into several layout sections :
- ------------------------------
- main.inc (this file includes all of the components)
- manager/toolbar.inc -
- ( this is the administrative toolbar )
- main/toolbar.inc -
- ( this is the main toolbar that includes all of the module toolbars )
- */
- ?>
- <?php include( './templates/generic-header.inc' ); ?>
- <center>
- <table cellspacing="0" border="0" cellpadding="0" width="100%">
- <?php
- include( './templates/main/title_row.inc' );
- include( './templates/main/content_row.inc' );
- $template_obj->ParseTemplate(
- './templates/main/bottom_row.inc'
- );
- ?>
- </table>
- </center>
- <?php include( './templates/generic-footer.inc' ); ?>
- <!-- GENERATION COMPLETE -->