theme.inc
上传用户:xiao730204
上传日期:2007-01-04
资源大小:141k
文件大小:3k
- <?php
- /* Defines the default theme items */
- $template_obj->Register(
- 'content_bgcolor',
- '#000000'
- );
- /* title */
- $template_obj->Register(
- 'title_bgcolor',
- '#a0b8c8'
- );
- $template_obj->Register(
- 'title_font_face',
- 'Arial,Helvetica,Geneva'
- );
- $template_obj->Register(
- 'title_font_color',
- '#000000'
- );
- /* navigation row */
- $template_obj->Register(
- 'nav_bgcolor',
- '#69869d'
- );
- $template_obj->Register(
- 'nav_font_face',
- 'Arial,Helvetica,Geneva'
- );
- $template_obj->Register(
- 'nav_font_color',
- '#ffffff'
- );
- /* default row */
- $template_obj->Register(
- 'default_bgcolor',
- '#e9e9e9'
- );
- $template_obj->Register(
- 'default_font_color',
- '#000000'
- );
- $template_obj->Register(
- 'default_font_face',
- 'Arial,Helvetica,Geneva'
- );
- $template_obj->Register(
- 'content_table_start',
- '<table border="0" cellpadding="0" cellspacing="0" bgcolor="' .
- $template_obj->GetValue( 'content_bgcolor' ) .
- '" >
- <tr><td>
- <table border="0" cellspacing="1" cellpadding="3" width="100%">
- '
- );
- $template_obj->Register(
- 'content_table_end',
- '
- </table>
- </td></tr>
- </table>
- '
- );
- /* title row */
- $template_obj->Register(
- 'title_row_start',
- '<tr bgcolor="' .
- $template_obj->GetValue( 'title_bgcolor' ) .
- '">'
- );
- $template_obj->Register(
- 'title_row_end',
- '</tr>'
- );
- $template_obj->Register(
- 'title_font',
- '<font color="' .
- $template_obj->GetValue( 'title_font_color' ) .
- '" face="' .
- $template_obj->GetValue( 'title_font_face' ) .
- '">'
- );
- $template_obj->Register(
- 'title_cell_start',
- '<td bgcolor="' .
- $template_obj->GetValue( 'title_bgcolor' ) .
- '">' .
- $template_obj->GetValue( 'title_font' ) .
- '<b>'
- );
- $template_obj->Register(
- 'title_cell_end',
- '</b></font></td>'
- );
- /* navigation row */
- $template_obj->Register(
- 'nav_row_start',
- '<tr bgcolor="' .
- $template_obj->GetValue( 'nav_bgcolor' ) .
- '">'
- );
- $template_obj->Register(
- 'nav_row_end',
- '</tr>'
- );
- $template_obj->Register(
- 'nav_font',
- '<font color="' .
- $template_obj->GetValue( 'nav_font_color' ) .
- '" face="' .
- $template_obj->GetValue( 'nav_font_face' ) .
- '">'
- );
- $template_obj->Register(
- 'nav_cell_start',
- '<td bgcolor="' .
- $template_obj->GetValue( 'nav_bgcolor' ) .
- '">' .
- $template_obj->GetValue( 'nav_font' )
- );
- $template_obj->Register(
- 'nav_cell_end',
- '</font></td>'
- );
- /* default row */
- $template_obj->Register(
- 'default_row_start',
- '<tr bgcolor="' .
- $template_obj->GetValue( 'default_bgcolor' ) .
- '">'
- );
- $template_obj->Register(
- 'default_row_end',
- '</tr>'
- );
- $template_obj->Register(
- 'default_font',
- '<font color="' .
- $template_obj->GetValue( 'default_font_color' ) .
- '" face="' .
- $template_obj->GetValue( 'default_font_face' ) .
- '">'
- );
- $template_obj->Register(
- 'default_cell_start',
- '<td bgcolor="' .
- $template_obj->GetValue( 'default_bgcolor' ) .
- '">' .
- $template_obj->GetValue( 'default_font' )
- );
- $template_obj->Register(
- 'default_cell_end',
- '</font></td>'
- );
- ?>