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

WEB邮件程序

开发平台:

PHP

  1. <?php
  2. /*
  3. The Actual calls to element includes and such are contained within
  4. functions to prevent varaible collision in the main namespace.
  5. */
  6. Function print_form() {
  7. global $default;
  8. global $session_id;
  9. global $template_obj;
  10. global $lang;
  11. global $user_db;
  12. global $target_username;
  13. global $target_domain_id;
  14. $temp_obj = new User();
  15. $temp_obj->user_name = $target_username;
  16. $temp_obj->domain_id = $target_domain_id;
  17. $user_db->debug->debug = true;
  18. $ret_vals = $user_db->Get( $temp_obj );
  19. $form_title = 'Delete user - confirmation';
  20. include( './templates/form/form_top.inc' );
  21. if ( $ret_vals[ 0 ] == 1 ) {
  22.    $temp_obj = $ret_vals[ 1 ];
  23.       $value = 'Attributes for : ' . $temp_obj->user_name;
  24.       include( './templates/form/form_section_title.inc' );
  25.       $desc_text = 'User ID';
  26.       $value     = $temp_obj->user_id;
  27.       include( './templates/form/form_readonly_text_elem.inc' );
  28.       $desc_text = 'Username';
  29.       $value     = $temp_obj->user_name;
  30.       include( './templates/form/form_readonly_text_elem.inc' );
  31.       $desc_text = 'Password';
  32.       $value     = $temp_obj->password;
  33.       include( './templates/form/form_readonly_text_elem.inc' );
  34.       $desc_text = 'Login disabled';
  35.       $value = '';
  36.       if ( $temp_obj->login_deny ) { 
  37.          $value = 'True';
  38.       } else {
  39.          $value = 'False';
  40.       }
  41.       include( './templates/form/form_readonly_text_elem.inc' );
  42.    } else {
  43.    echo( '<tr ' . $default->item_bg . '>' );
  44.    echo( '<td>No users found with that id.</td>' );
  45.    echo( '</tr>' );
  46.    }
  47. $name = 'session_id';
  48. $value = $session_id;
  49. include( './templates/form/form_hidden_elem.inc' );
  50. $name = 'target_username';
  51. $value = $target_username;
  52. include( './templates/form/form_hidden_elem.inc' );
  53. $name = 'target_domain_id';
  54. $value = $target_domain_id;
  55. include( './templates/form/form_hidden_elem.inc' );
  56. $submit_text   = 'Delete';
  57. include( './templates/form/form_bottom.inc' );
  58. }
  59. $form_mode     = MANAGER_USER_DELETE;
  60. include( './templates/main.inc' );
  61. ?>