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

WEB邮件程序

开发平台:

PHP

  1. <?php
  2. $template_obj->ParseTemplate(
  3.    './templates/main/title_row/top.inc'
  4. );
  5. if ( $user_obj->deny_login != 1 ) { 
  6.    $template_obj->ParseTemplate( 
  7.       './templates/horizontal_toolbar/top.inc' 
  8.    );
  9.    include( './templates/main/horizontal_toolbar.inc' );
  10.    $template_obj->ParseTemplate(
  11.       './templates/horizontal_toolbar/bottom.inc'
  12.    );
  13. }
  14. $template_obj->Register( 'title', $title );
  15. $template_obj->ParseTemplate(
  16.    './templates/main/title_row/bottom.inc' 
  17. );
  18. ?>