?? settings.php
字號:
<?php
/* *********************************************************************
*
* SCRiPTMAFiA 2005 - THE DiRTY HANDS ON YOUR SCRiPTS
*
********************************************************************** */
// --------------------------------------------------------------------
// COLORS AND STYLES. "DEFAULT" TEMPLATE
// Default stylesheet (included to header.inc)
$def_style = " <link rel=\"stylesheet\" href=\"$def_mainlocation/template/$def_template/css.css\">";
// Default central frame background color
$def_background="#FFFFEE";
// Default background color for HELP and MENU sections
$def_help_background="#FFFFFF";
// Default background color for side boxes (menu, help, etc.)
$def_box_background="#FFFFFF";
// Default status line background color
$def_status_color="#FFFF88";
// Default status line font color
$def_status_font_color="#666666";
// --------------------------------------------------------------------
// FORMS
// Form header font size
$def_form_header_fontsize="1";
// Form header font face
$def_form_header_font="verdana";
// Form header color
$def_form_header_color="#FFFFAA";
// Form background color
$def_form_back_color="#FFFFCC";
// A Membership Listing background color
$def_form_back_color_premium="#F1F1F1";
// Submission Form fields width in pixels
$def_subm_form_size="300";
// User Login/Update Listing Form fields width in pixels
$def_update_form_size="300";
// Advanced Search Form fields width in pixels
$def_search_form_size="300";
// SIDE BOXES TABLE HEADER & FOOTER
function table_top ($item)
{
global $def_mainlocation;
global $def_template;
global $def_box_background;
echo "
<br />
<table width=90% cellspacing=0 cellpadding=5 border=0>
<tr>
<td width=\"100%\" height=\"25\" background=\"$def_mainlocation/template/$def_template/images/cell-background.gif\" valign=center align=center>
<font face=tahoma color=black>$item</font>
</td>
</tr>
<tr>
<td width=\"100%\" align=\"left\" valign=\"top\" bgcolor=\"$def_box_background\">
<br />
";
}
function table_bottom ()
{
global $def_mainlocation;
global $def_template;
global $def_box_background;
echo "
</td>
</tr>
</table>
";
}
// MAIN FRAME TABLE HEADER & FOOTER
function main_table_top ($item)
{
global $def_mainlocation;
global $def_template;
global $def_box_background;
echo "
<br />
<table width=100% cellspacing=1 cellpadding=5 border=0>
<tr>
<td width=\"100%\" height=\"24\" bgcolor=\"#FFFFAA\" valign=center align=center>
<font color=black>$item</font>
</td>
</tr>
<tr>
<td width=\"100%\" align=\"center\" valign=\"top\" bgcolor=\"$def_box_background\">
";
}
function main_table_bottom ()
{
global $def_mainlocation;
global $def_template;
global $def_box_background;
echo "
</td>
</tr>
</table>
";
}
?>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -