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

WEB邮件程序

开发平台:

PHP

  1. <?php
  2. /* Defines the default theme items */
  3. $template_obj->Register(
  4. 'default_body_tag',
  5. '<body bgcolor="#000000" link="#000000" vlink="#000000" alink="#000000">'
  6. );
  7. if ( $boxy_theme_mode == 1 ) {
  8. $template_obj->Register( 'left_top_corner_img',    '&nbsp;');
  9. $template_obj->Register( 'right_top_corner_img',   '&nbsp;');
  10. $template_obj->Register( 'left_bottom_corner_img', '&nbsp;');
  11. $template_obj->Register( 'right_bottom_corner_img', '&nbsp;' );
  12. } else {
  13. $template_obj->Register(
  14.    'left_top_corner_img',
  15.    '<img ' .
  16.    'src="' . $default->graphics_base_url . '/corners/left_top.gif" ' .
  17.    'width="15" ' .
  18.    'height="15" ' .
  19.    'align="left" ' .
  20.    'valign="top" ' .
  21.    'hspace="0" ' .
  22.    'vspace="0"'.
  23.    '>'
  24. );
  25. $template_obj->Register(
  26.    'right_top_corner_img',
  27.    '<img ' .
  28.    'src="' . $default->graphics_base_url . '/corners/right_top.gif" ' .
  29.    'align="right" ' .
  30.    'width="15" ' .
  31.    'height="15"' .
  32.    'hspace="0" ' .
  33.    'vspace="0"'.
  34.    '>' 
  35. );
  36. $template_obj->Register(
  37.    'left_bottom_corner_img',
  38.    '<img ' .
  39.    'src="' . $default->graphics_base_url . '/corners/left_bottom.gif"' .
  40.    '>'
  41. );
  42. $template_obj->Register(
  43.    'right_bottom_corner_img',
  44.    '<img ' .
  45.    'src="' . $default->graphics_base_url . '/corners/right_bottom.gif"' .
  46.    '>'
  47. );
  48. }
  49. $template_obj->Register(
  50.    'edit_img',
  51.    '<img src="' . $default->graphics_base_url . '/edit.gif" alt="Edit" border="0">'
  52. );
  53. $template_obj->Register(
  54.    'trash_img',
  55.    '<img src="' . $default->graphics_base_url . '/trash.gif" alt="Delete" border="0">'
  56. );
  57. $template_obj->Register(
  58.    'content_table_start',
  59.    '<table border="0" cellpadding="0" cellspacing="0" bgcolor="' .
  60.       $template_obj->GetValue( 'content_bgcolor' ) .
  61.    '" width="100%">
  62. <tr><td>
  63. <table border="0" cellspacing="1" cellpadding="3" width="100%">
  64. '
  65. );
  66. $template_obj->Register(
  67.    'content_table_end',
  68.    '
  69. </table>
  70. </td></tr>
  71. </table>
  72. '
  73. );
  74. $template_obj->Register(
  75.    'title_font',
  76.    '<font color="' . 
  77.       $template_obj->GetValue( 'title_font_color' ) .
  78.    '" face="' .
  79.       $template_obj->GetValue( 'title_font_face' ) . 
  80.    '">'
  81. );
  82. $template_obj->Register(
  83.    'nav_font',
  84.    '<font color="' . 
  85.       $template_obj->GetValue( 'nav_font_color' ) .
  86.    '" face="' .
  87.       $template_obj->GetValue( 'nav_font_face' ) . 
  88.    '">'
  89. );
  90. $template_obj->Register( 
  91. 'default_font',
  92.    '<font color="' . 
  93.       $template_obj->GetValue( 'default_font_color' ) .
  94.    '" face="' .
  95.       $template_obj->GetValue( 'default_font_face' ) . 
  96.    '">'
  97. );
  98. $template_obj->Register(
  99.    'mail_new_font',
  100.    '<font color="' . 
  101.       $template_obj->GetValue( 'mail_new_font_color' ) .
  102.    '" face="' .
  103.       $template_obj->GetValue( 'mail_new_font_face' ) . 
  104.    '">'
  105. );
  106. $template_obj->Register(
  107.    'mail_deleted_font',
  108.    '<font color="' . 
  109.       $template_obj->GetValue( 'mail_deleted_font_color' ) .
  110.    '" face="' .
  111.       $template_obj->GetValue( 'mail_deleted_font_face' ) . 
  112.    '">'
  113. );
  114. $template_obj->Register(
  115.    'mail_read_font',
  116.    '<font color="' . 
  117.       $template_obj->GetValue( 'mail_read_font_color' ) .
  118.    '" face="' .
  119.       $template_obj->GetValue( 'mail_read_font_face' ) . 
  120.    '">'
  121. );
  122. if ( $browser_obj->style_sheets ) {
  123.    $style_sheet = '
  124. <style>
  125. .title
  126. {
  127.    font-family: ' . $template_obj->GetValue( 'title_font_face' ) . ';
  128.    color: ' . $template_obj->GetValue( 'title_font_color' ) . ';
  129.    background-color: ' . $template_obj->GetValue( 'title_bgcolor' ) . ';
  130. }
  131. .nav
  132. {
  133.    font-family: ' . $template_obj->GetValue( 'nav_font_face' ) . ';
  134.    color: ' . $template_obj->GetValue( 'nav_font_color' ) . ';
  135.    background-color: ' . $template_obj->GetValue( 'nav_bgcolor' ) . ';
  136. }
  137. .default
  138. {
  139.    font-family: ' . $template_obj->GetValue( 'default_font_face' ) . ';
  140.    color: ' . $template_obj->GetValue( 'default_font_color' ) . ';
  141.    background-color: ' . $template_obj->GetValue( 'default_bgcolor' ) . ';
  142. }
  143. .mailnew
  144. {
  145.    font-family: ' . $template_obj->GetValue( 'mail_new_font_face' ) . ';
  146.    color: ' . $template_obj->GetValue( 'mail_new_font_color' ) . ';
  147.    background-color: ' . $template_obj->GetValue( 'mail_new_bgcolor' ) . ';
  148. }
  149. .maildeleted
  150. {
  151.    font-family: ' . $template_obj->GetValue( 'mail_deleted_font_face' ) . ';
  152.    color: ' . $template_obj->GetValue( 'mail_deleted_font_color' ) . ';
  153.    background-color: ' . $template_obj->GetValue( 'mail_deleted_bgcolor' ) . ';
  154. }
  155. .mailread
  156. {
  157.    font-family: ' . $template_obj->GetValue( 'mail_read_font_face' ) . ';
  158.    color: ' . $template_obj->GetValue( 'mail_read_font_color' ) . ';
  159.    background-color: ' . $template_obj->GetValue( 'mail_read_bgcolor' ) . ';
  160. }
  161. .content
  162. {
  163.    font-family: ' . $template_obj->GetValue( 'content_font_face' ) . ';
  164.    color: ' . $template_obj->GetValue( 'content_font_color' ) . ';
  165.    background-color: ' . $template_obj->GetValue( 'content_bgcolor' ) . ';
  166. }
  167. </style>
  168. ';
  169.    $template_obj->Register( 'default_style_sheet', $style_sheet );
  170.    // If style sheets are not working comment out the 
  171.    // style sheet line and replace it with the one
  172.    // below.
  173.    //include( './themes/common/no_style_sheets.inc' );
  174.    include( './themes/common/style_sheets.inc' );
  175. } else {
  176.    $template_obj->Register( 'default_style_sheet', '' );
  177.    include( './themes/common/no_style_sheets.inc' );
  178. }
  179. ?>