Here you can pick and choose which options that you\'d like to enable and disable. Some options will show/hide more options, instantly. However, no permanent changes will take effect unless you hit the Save Changes button.'; } function admin_classic_borders_bordertype_callback() { $options = get_option('admin_classic_borders_options'); echo ''; echo '

Select which type of border you\'d like. Options are light, dark, and 3D (both). Default is 3D.

'; } function admin_classic_borders_lightopacity_callback() { $options = get_option('admin_classic_borders_options'); echo '
(0%)
'.$options['lightopacity'].'%
(100%)
'; echo ''; echo '
'; echo '

Enter a number between 0 and 100 to change the opacity of the light (upper) borders of menu items. The default is 15.

'; } function admin_classic_borders_darkopacity_callback() { $options = get_option('admin_classic_borders_options'); echo '
(0%)
'.$options['darkopacity'].'%
(100%)
'; echo ''; echo '
'; echo '

Enter a number between 0 and 100 to change the opacity of the dark (lower) borders of menu items. The default is 90.

'; } function admin_classic_borders_showrowhovereffect_callback() { $options = get_option('admin_classic_borders_options'); echo ''; echo '

Would you like rows (in the list of pages, posts, comments, etc), to change color on hover? Default is yes.

'; } function admin_classic_borders_rowhovercolor_callback() { $options = get_option('admin_classic_borders_options'); echo ''; echo ''; echo '

Select which color you\'d like to have for the row hover effect. Default color is #DCE6FA, also known as rgb(220,230,250).

'; } function admin_classic_borders_validation($input) { $output = array(); foreach($input as $key => $value) { if (isset($input[$key])) { $output[$key] = strip_tags( stripslashes( $input[ $key ] ) ); } } return apply_filters('admin_classic_borders_validation', $output, $input); }