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

WEB邮件程序

开发平台:

PHP

  1. <?php
  2. $toolbar_current_app = 'PROMETHEUS';
  3. $template_obj->Register( 'section_title', 'User' );
  4. $template_obj->ParseTemplate(
  5.    './templates/toolbar/section_title.inc' 
  6. );
  7. /*
  8. $toolbar_desc = 'Change password';
  9. $toolbar_form_mode = Array(
  10.    PROMETHEUS_CHANGE_PASSWORD
  11. );
  12. include( './templates/toolbar/item.inc' );
  13. */
  14. /* 
  15. $toolbar_desc = 'Profile';
  16. $toolbar_form_mode = Array(
  17.    PROMETHEUS_CHANGE_PASSWORD
  18. );
  19. include( './templates/toolbar/item.inc' );
  20. */
  21. /*
  22. $toolbar_desc = 'Language';
  23. $toolbar_form_mode = Array(
  24.    PROMETHEUS_CHANGE_PASSWORD
  25. );
  26. include( './templates/toolbar/item.inc' );
  27. */
  28. if ( $default->user_change_themes == 1 ) {
  29. $toolbar_desc = 'Theme';
  30. $toolbar_form_mode = Array(
  31.    PROMETHEUS_CHANGE_THEME_FRM
  32. );
  33. include( './templates/toolbar/item.inc' );
  34. }
  35. $toolbar_desc        = 'Logout';
  36. $toolbar_form_mode   = Array(
  37.    PROMETHEUS_LOGOUT
  38. );
  39. include( './templates/toolbar/item.inc' );
  40. ?>