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

WEB邮件程序

开发平台:

PHP

  1. <?php
  2. /* Defines the default theme items */
  3. $template_obj->Register(
  4.    'content_bgcolor',
  5.    '#000000'
  6. );
  7. /* title */
  8. $template_obj->Register( 
  9.    'title_bgcolor',
  10.    '#a0b8c8'
  11. );
  12. $template_obj->Register(
  13.    'title_font_face',
  14.    'Arial,Helvetica,Geneva'
  15. );
  16. $template_obj->Register(
  17.    'title_font_color',
  18.    '#000000'
  19. );
  20. /* navigation row */
  21. $template_obj->Register( 
  22.    'nav_bgcolor',
  23.    '#69869d'
  24. );
  25. $template_obj->Register(
  26.    'nav_font_face',
  27.    'Arial,Helvetica,Geneva'
  28. );
  29. $template_obj->Register(
  30.    'nav_font_color',
  31.    '#ffffff'
  32. );
  33. /* default row */
  34. $template_obj->Register(
  35.    'default_bgcolor',
  36.    '#e9e9e9'
  37. );
  38. $template_obj->Register(
  39.    'default_font_color',
  40.    '#000000'
  41. );
  42. $template_obj->Register(
  43.    'default_font_face',
  44.    'Arial,Helvetica,Geneva'
  45. );
  46. $template_obj->Register(
  47.    'content_table_start',
  48.    '<table border="0" cellpadding="0" cellspacing="0" bgcolor="' .
  49.       $template_obj->GetValue( 'content_bgcolor' ) .
  50.    '" >
  51. <tr><td>
  52. <table border="0" cellspacing="1" cellpadding="3" width="100%">
  53. '
  54. );
  55. $template_obj->Register(
  56.    'content_table_end',
  57.    '
  58. </table>
  59. </td></tr>
  60. </table>
  61. '
  62. );
  63. /* title row */
  64. $template_obj->Register( 
  65.    'title_row_start',
  66.    '<tr bgcolor="' .
  67.       $template_obj->GetValue( 'title_bgcolor' ) .
  68.    '">'
  69. );
  70. $template_obj->Register(
  71.    'title_row_end',
  72.    '</tr>'
  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.    'title_cell_start',
  84.    '<td bgcolor="' .
  85.       $template_obj->GetValue( 'title_bgcolor' ) .
  86.    '">' .
  87.       $template_obj->GetValue( 'title_font' ) .
  88.    '<b>'
  89. );
  90. $template_obj->Register(
  91.    'title_cell_end',
  92.    '</b></font></td>'
  93. );
  94. /* navigation row */
  95. $template_obj->Register( 
  96.    'nav_row_start',
  97.    '<tr bgcolor="' . 
  98.       $template_obj->GetValue( 'nav_bgcolor' ) .
  99.    '">'
  100. );
  101. $template_obj->Register(
  102.    'nav_row_end',
  103.    '</tr>'
  104. );
  105. $template_obj->Register(
  106.    'nav_font',
  107.    '<font color="' . 
  108.       $template_obj->GetValue( 'nav_font_color' ) .
  109.    '" face="' .
  110.       $template_obj->GetValue( 'nav_font_face' ) . 
  111.    '">'
  112. );
  113. $template_obj->Register(
  114.    'nav_cell_start',
  115.    '<td bgcolor="' .
  116.       $template_obj->GetValue( 'nav_bgcolor' ) .
  117.    '">' .
  118.       $template_obj->GetValue( 'nav_font' )
  119. );
  120. $template_obj->Register(
  121.    'nav_cell_end',
  122.    '</font></td>'
  123. );
  124. /* default row */
  125. $template_obj->Register( 
  126.    'default_row_start',
  127.    '<tr bgcolor="' .
  128.       $template_obj->GetValue( 'default_bgcolor' ) .
  129.    '">'
  130. );
  131. $template_obj->Register(
  132.    'default_row_end',
  133.    '</tr>'
  134. );
  135. $template_obj->Register(
  136.    'default_font',
  137.    '<font color="' . 
  138.       $template_obj->GetValue( 'default_font_color' ) .
  139.    '" face="' .
  140.       $template_obj->GetValue( 'default_font_face' ) . 
  141.    '">'
  142. );
  143. $template_obj->Register(
  144.    'default_cell_start',
  145.    '<td bgcolor="' .
  146.       $template_obj->GetValue( 'default_bgcolor' ) .
  147.    '">' .
  148.       $template_obj->GetValue( 'default_font' )
  149. );
  150. $template_obj->Register(
  151.    'default_cell_end',
  152.    '</font></td>'
  153. );
  154. ?>