d12 Message Blocks Options
New! In version 1.1, you can select from 10 different border styles and 11 color schemes. Seven of the color schemes are suitable for light backgrounds, and the other four are suitable for dark backgrounds. (Screenshots display the "Business" color scheme.)
Select from one of 10 different border styles.';
};
// Callback for color scheme setting_section
function cs_settings_section() {
echo 'Select from one of 11 different color schemes.
';
};
// Callback for settings_field for Border Style
function bs_settings_field(){
$options = get_option( 'd12mb_options' );
$html = 'Rounded Corner Options
';
$html .= ' ';
$html .= '' . __( 'Rounded Corners Thin Border', 'd12-message-blocks' ) . ' ';
$html .= ' ';
$html .= ' ';
$html .= '' . __( 'Rounded Corners Thick Border', 'd12-message-blocks' ) . ' ';
$html .= ' ';
$html .= ' ';
$html .= '' . __( 'Rounded Corners Double Border', 'd12-message-blocks' ) . ' ';
$html .= ' ';
$html .= 'Square Corner Options
';
$html .= ' ';
$html .= '' . __( 'Square Corners Thin Border', 'd12-message-blocks' ) . ' ';
$html .= ' ';
$html .= ' ';
$html .= '' . __( 'Square Corners Thick Border', 'd12-message-blocks' ) . ' ';
$html .= ' ';
$html .= ' ';
$html .= '' . __( 'Square Corners Double Border', 'd12-message-blocks' ) . ' ';
$html .= ' ';
$html .= 'MediaWiki Style Borders have a bar on the left side
';
$html .= ' ';
$html .= '' . __( 'Thick Bar Thin Border', 'd12-message-blocks' ) . ' ';
$html .= ' ';
$html .= ' ';
$html .= '' . __( 'Thick Bar Thick Border', 'd12-message-blocks' ) . ' ';
$html .= ' ';
$html .= ' ';
$html .= '' . __( 'Thin Bar Thick Border', 'd12-message-blocks' ) . ' ';
$html .= ' ';
$html .= ' ';
$html .= '' . __( 'Thin Bar Thin Border', 'd12-message-blocks' ) . ' ';
$html .= ' ';
echo $html;
}
// Callback for settings_field for Color Scheme
function cs_settings_field(){
$options = get_option( 'd12mb_options' );
$html = 'Light Themes — suitable for light backgrounds
';
$html .= ' ';
$html .= ''. __( 'Colorful (Default)', 'd12-message-blocks' ) . ' ';
$html .= ' ';
$html .= '' . __( 'Business', 'd12-message-blocks' ) . ' ';
$html .= ' ';
$html .= '' . __( 'Beach', 'd12-message-blocks' ) . ' ';
$html .= ' ';
$html .= '' . __( 'Sol', 'd12-message-blocks' ) . ' ';
$html .= ' ';
$html .= '' . __( 'Aqua', 'd12-message-blocks' ) . ' ';
$html .= ' ';
$html .= '' . __( 'Forest', 'd12-message-blocks' ) . ' ';
$html .= ' ';
$html .= '' . __( 'Winter', 'd12-message-blocks' ) . ' ';
$html .= ' ';
$html .= '' . __( 'Black and White', 'd12-message-blocks' ) . ' ';
$html .= 'Dark Themes — suitable for dark backgrounds
';
$html .= ' ';
$html .= '' . __( 'Magique', 'd12-message-blocks' ) . ' ';
$html .= ' ';
$html .= '' . __( 'Solstice', 'd12-message-blocks' ) . ' ';
$html .= ' ';
$html .= '' . __( 'Bark', 'd12-message-blocks' ) . ' ';
$html .= ' ';
$html .= '' . __( 'Leaves', 'd12-message-blocks' ) . ' ';
echo $html;
};