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 $user_lang_obj;
  10. global $template_obj;
  11. global $target_domain_id;
  12. $domain_db = new User_Domain_Db();
  13.    $domain_db = $domain_db->Db(
  14.    $default->user_domain_db->driver,
  15.    $default->user_domain_db
  16. );
  17. $temp_obj = new User_Domain();
  18. $temp_obj->domain_id = $target_domain_id;
  19. $ret_vals = $domain_db->Get( $target_domain_id );
  20. $form_title = 'Delete domain - confirmation';
  21. include( './templates/form/form_top.inc' );
  22. if ( $ret_vals[ 0 ] == 1 ) {
  23.    $temp_obj = $ret_vals[ 1 ];
  24.    $value = 'Attributes for : ' . $temp_obj->domain_name;
  25.    include( './templates/form/form_section_title.inc' );
  26.    $desc_text = 'Domain ID';
  27.    $value     = $temp_obj->domain_id;
  28.    include( './templates/form/form_readonly_text_elem.inc' );
  29.    $desc_text = 'Domain Name';
  30.    $value     = $temp_obj->domain_name;
  31.    include( './templates/form/form_readonly_text_elem.inc' );
  32.    } else {
  33.    echo( '<tr ' . $template_obj->Get( 'default_bgcolor' ) . '>' );
  34.    echo( '<td>No domain found with that id.</td>' );
  35.    echo( '</tr>' );
  36.    }
  37. $name = 'session_id';
  38. $value = $session_id;
  39. include( './templates/form/form_hidden_elem.inc' );
  40. $name = 'target_domain_id';
  41. $value = $target_domain_id;
  42. include( './templates/form/form_hidden_elem.inc' );
  43. $submit_text   = 'Delete';
  44. include( './templates/form/form_bottom.inc' );
  45. }
  46. $form_mode     = MANAGER_VDOMAIN_DELETE;
  47. include( './templates/main.inc' );
  48. ?>