';
$coded_comment = preg_replace($img_patter,$img_replace,$comment);
$bbcodes = array
(
'/\[b\]/','/\[i\]/','/\[u\]/','/\[quote\]/','/\[url\](.*)\[\/url\]/',
'/\[\/b\]/','/\[\/i\]/','/\[\/u\]/','/\[\/quote\]/','/\[url=(.*)\](.*)\[\/url\]/'
);
$HTMLcodes = array
(
'','','','','$1',
'
','','','','$2',
);
$coded_comment = preg_replace($bbcodes,$HTMLcodes,$coded_comment);
return $coded_comment;
}
}
//Registering Action that will be applied while displaying comment and or description
register_action(array('bb_to_html'=>array('comment','description')));
//Registerin Anchors , that will be displayed before compose boxes
register_anchor("",'before_compose_box');
register_anchor("",'before_reply_compose_box');
register_anchor("",'before_desc_compose_box');
//Adding JS Code
$Cbucket->addJS(array('bbcode_js/ed.js'=>'global'));
//Creating Menu In Admin Panel
//add_admin_menu('ClipBucket BBCode','Manage BBCodes','admin_bbcoder.php');
?>