4 * @license http://www.gnu.org/copyleft/gpl.html GNU Public License
6 * Custom corners and borders
9 * 2007-05-07 File created.
13 * Starting part of the surrounding divs for custom corners
15 * @param boolean $clearfix, add CLASS "clearfix" to the inner div against collapsing
16 * @param boolean $return, return as string or just print it
18 function print_custom_corners_start($clearfix=false, $return=false) {
19 $output = '<div class="wrap">'."\n";
20 $output .= '<div class="bt"><div> </div></div>';
22 $output .= '<div class="i1"><div class="i2">';
23 $output .= (!empty($clearfix)) ?
'<div class="i3 clearfix">' : '<div class="i3">';
34 * Ending part of the surrounding divs for custom corners
36 * @param boolean $return, return as string or just print it
38 function print_custom_corners_end($return=false) {
39 $output = '</div></div></div>';
41 $output .= '<div class="bb"><div> </div></div>'."\n";