2006-12-02 04:36:16 +00:00
|
|
|
<?php
|
|
|
|
/*
|
2009-11-12 15:01:36 +00:00
|
|
|
* e107 website system
|
|
|
|
*
|
2011-12-09 02:08:04 +00:00
|
|
|
* Copyright (C) e107 Inc (e107.org)
|
2009-11-12 15:01:36 +00:00
|
|
|
* Released under the terms and conditions of the
|
|
|
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
|
|
|
*
|
2011-12-09 02:08:04 +00:00
|
|
|
* $URL$
|
|
|
|
* $Id$
|
2009-11-12 15:01:36 +00:00
|
|
|
*/
|
|
|
|
|
2006-12-02 04:36:16 +00:00
|
|
|
// How to register your own BBcode button.
|
|
|
|
// Uncomment the 2 commented lines below to see it in action. (only applies to the user area)
|
|
|
|
|
2009-07-07 07:25:27 +00:00
|
|
|
// $register_bb['blank'] = array("", "[blank][/blank]","Blank example helper text",e_IMAGE."bbcode/template.png");
|
2011-12-09 02:08:04 +00:00
|
|
|
// Simplified default bbcode bar - removed P, H, BR and NOBR bbcodes
|
2012-06-02 08:12:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
// This is used on the front-end. ie. comments etc.
|
2006-12-02 04:36:16 +00:00
|
|
|
$BBCODE_TEMPLATE = "
|
2021-11-26 12:36:25 -08:00
|
|
|
{BB=link}{BB=b}{BB=i}{BB=u}{BB=img}{BB=left}{BB=center}{BB=right}{BB=justify}{BB=bq}{BB=list}{BB=emotes}
|
2009-09-19 15:21:51 +00:00
|
|
|
<div class='field-spacer'><!-- --></div>
|
2006-12-02 04:36:16 +00:00
|
|
|
";
|
|
|
|
|
2012-06-15 04:15:46 +00:00
|
|
|
$BBCODE_TEMPLATE_COMMENT = ""; // no buttons on comments by default.
|
|
|
|
|
2006-12-02 04:36:16 +00:00
|
|
|
// $BBCODE_TEMPLATE .= "{BB=blank}";
|
|
|
|
|
2012-06-02 08:12:16 +00:00
|
|
|
$BBCODE_TEMPLATE_SIGNATURE = "
|
2021-11-26 12:36:25 -08:00
|
|
|
{BB=link}{BB=b}{BB=i}{BB=u}{BB=img}{BB=left}{BB=center}{BB=right}{BB=justify}{BB=list}
|
2012-06-02 08:12:16 +00:00
|
|
|
<div class='field-spacer'><!-- --></div>
|
|
|
|
";
|
|
|
|
|
|
|
|
|
|
|
|
|
2006-12-02 04:36:16 +00:00
|
|
|
|
|
|
|
// $sc_style['BB_HELP']['pre'] = "<div style='text-align:center'>";
|
|
|
|
// $sc_style['BB_HELP']['post'] = "</div>";
|
|
|
|
|
2007-11-13 07:54:33 +00:00
|
|
|
$BBCODE_TEMPLATE_SUBMITNEWS = "
|
2009-09-19 15:21:51 +00:00
|
|
|
|
|
|
|
{BB_HELP}
|
|
|
|
<div class='field-spacer'><!-- --></div>
|
2013-05-31 13:52:56 -07:00
|
|
|
{BB=link}{BB=b}{BB=i}{BB=u}{BB=img}{BB=left}{BB=center}{BB=right}{BB=justify}
|
2014-01-21 06:55:19 -08:00
|
|
|
{BB=list}{BB=nobr}{BB=br}{BB=fontcol}{BB=fontsize}{BB=emotes}{BB=flash}{BB=youtube}
|
2009-09-19 15:21:51 +00:00
|
|
|
<div class='field-spacer'><!-- --></div>
|
2007-11-13 07:54:33 +00:00
|
|
|
";
|
2006-12-02 04:36:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
// -------- Admin Templates ----------------------
|
|
|
|
|
|
|
|
$BBCODE_TEMPLATE_ADMIN = "
|
2014-01-17 06:49:55 -08:00
|
|
|
<div class='btn-toolbar'>
|
2013-05-31 13:52:56 -07:00
|
|
|
{BB=link}{BB=b}{BB=i}{BB=u}{BB=img}{BB=format}{BB=left}{BB=center}{BB=right}{BB=justify}
|
2014-01-21 06:40:46 -08:00
|
|
|
{BB=list}{BB=table}{BB=fontcol}{BB=fontsize}{BB=emotes}
|
2014-01-23 17:23:38 -08:00
|
|
|
{BB_PREIMAGEDIR}{BB=flash}
|
|
|
|
<div class='btn-group'>{BB=preimage}{BB=prefile}{BB=youtube}</div>
|
2013-03-16 02:05:04 -07:00
|
|
|
</div>
|
2006-12-02 04:36:16 +00:00
|
|
|
";
|
|
|
|
|
2009-11-04 20:19:11 +00:00
|
|
|
$BBCODE_TEMPLATE_MAILOUT = "
|
2014-01-17 06:49:55 -08:00
|
|
|
<div class='btn-toolbar'>
|
2014-01-21 06:40:46 -08:00
|
|
|
{BB=link}{BB=b}{BB=i}{BB=u}{BB=img}{BB=left}{BB=center}{BB=right}{BB=justify}{BB=list}{BB=fontcol}{BB=fontsize}{BB=emotes}
|
2014-01-23 17:23:38 -08:00
|
|
|
{BB_PREIMAGEDIR}{BB=flash}
|
|
|
|
<div class='btn-group'>{BB=preimage}{BB=prefile}{BB=shortcode}</div>
|
2013-05-31 13:52:56 -07:00
|
|
|
</div>
|
2009-11-04 20:19:11 +00:00
|
|
|
";
|
|
|
|
|
2006-12-02 04:36:16 +00:00
|
|
|
// $BBCODE_TEMPLATE_ADMIN .= "{BB=blank}";
|
|
|
|
|
|
|
|
$BBCODE_TEMPLATE_NEWSPOST = "
|
2014-01-17 06:49:55 -08:00
|
|
|
<div class='btn-toolbar'>
|
2021-11-26 12:36:25 -08:00
|
|
|
{BB=link}{BB=b}{BB=i}{BB=u}{BB=img}{BB=format}{BB=left}{BB=center}{BB=right}{BB=justify}{BB=list}{BB=table}{BB=fontcol}{BB=fontsize}{BB=emotes}{BB=flash}
|
2011-05-05 11:30:00 +00:00
|
|
|
{BB_PREIMAGEDIR=news}
|
2014-01-23 17:23:38 -08:00
|
|
|
<div class='btn-group'>{BB=preimage}{BB=prefile}{BB=youtube}</div>
|
2013-05-31 13:52:56 -07:00
|
|
|
</div>
|
2006-12-02 04:36:16 +00:00
|
|
|
";
|
|
|
|
|
|
|
|
$BBCODE_TEMPLATE_CPAGE = "
|
2014-01-17 06:49:55 -08:00
|
|
|
<div class='btn-toolbar'>
|
2013-05-31 13:52:56 -07:00
|
|
|
{BB=link}{BB=b}{BB=i}{BB=u}{BB=img}{BB=format}{BB=left}{BB=center}{BB=right}{BB=justify}
|
2014-01-23 17:23:38 -08:00
|
|
|
{BB=list}{BB=table}{BB=fontcol}{BB=fontsize}{BB=emotes}{BB=flash}
|
2011-05-05 11:30:00 +00:00
|
|
|
{BB_PREIMAGEDIR=page}
|
2014-01-23 17:23:38 -08:00
|
|
|
<div class='btn-group'>{BB=preimage}{BB=prefile}{BB=youtube}</div>
|
2013-05-31 13:52:56 -07:00
|
|
|
</div>
|
2006-12-02 04:36:16 +00:00
|
|
|
";
|
2020-06-02 12:05:20 -07:00
|
|
|
|
|
|
|
|