vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=251)
-   -   How to add custom bbcodes to quick reply editor? (https://vborg.vbsupport.ru/showthread.php?t=278422)

cellarius 03-26-2012 11:01 AM

Try:
Code:

if ($this->editor_type != "fe")
{
  $this->addCustomToolbarButtons();
}

(Adds buttons to all editors but full editor).

Emeralda 03-26-2012 11:34 AM

Uhm... where do I put it? I tried replacing the previous code with yours, but nothing appeared.

Badshah93 04-26-2012 03:22 PM

for adding any particular custom bbcode to Quick Reply, create new plugin

Hook: editor_construct
Title: bbcode button
plugin code:

PHP Code:

if ($this->editor_type == 'qr') {
$this->config['toolbar'][] = array('xxx');


Replace xxx with Title of custom bbcode, to get title of bbcode open BB Code Manager in admincp.

cjwinternet 11-16-2012 01:40 PM

Quote:

Originally Posted by Badshah93 (Post 2323754)
for adding any particular custom bbcode to Quick Reply, create new plugin

Hook: editor_construct
Title: bbcode button
plugin code:

PHP Code:

if ($this->editor_type == 'qr') {
$this->config['toolbar'][] = array('xxx');


Replace xxx with Title of custom bbcode, to get title of bbcode open BB Code Manager in admincp.

That works great, thanks.

Sworm 12-05-2012 10:31 AM

I'm using this one for all the custom BBcodes in QR and QE:

Hook: editor_construct
Code:

if ($this->editor_type == 'qr' || $this->editor_type == 'qe')
{
$this->addCustomToolbarButtons();
}

and this one to add "code" - "php" - "html" in the Quick Reply/Edit

Hook: editor_toolbar_filter
Code:

if ($this->editor_type == 'qr' || $this->editor_type == 'qe')
{
$toolbar[] = array('Code', 'Html', 'Php');
}

They working for me.

msau 11-20-2014 06:03 PM

Quote:

Originally Posted by Badshah93 (Post 2323754)
for adding any particular custom bbcode to Quick Reply, create new plugin

Hook: editor_construct
Title: bbcode button
plugin code:

PHP Code:

if ($this->editor_type == 'qr') {
$this->config['toolbar'][] = array('xxx');


Replace xxx with Title of custom bbcode, to get title of bbcode open BB Code Manager in admincp.

nOOb to a lot of this stuff, this worked great, thanks a lot. :)

jamoss 04-20-2015 05:29 PM

Quote:

Originally Posted by kh99 (Post 2298679)
Try this, in a plugin using hook editor_toolbar_set:

Code:

if ($this->editor_type == 'qr')
{
  $this->addCustomToolbarButtons();
}


Perfect! Just what I needed.

thetechgenius 04-21-2015 04:49 PM

Quote:

Originally Posted by Sworm (Post 2388624)
I'm using this one for all the custom BBcodes in QR and QE:

Hook: editor_construct
Code:

if ($this->editor_type == 'qr' || $this->editor_type == 'qe')
{
$this->addCustomToolbarButtons();
}

and this one to add "code" - "php" - "html" in the Quick Reply/Edit

Hook: editor_toolbar_filter
Code:

if ($this->editor_type == 'qr' || $this->editor_type == 'qe')
{
$toolbar[] = array('Code', 'Html', 'Php');
}

They working for me.

Wow, that worked perfect! Thank you!

The only problem I have is, the PHP, HTML, and Code BBcodes show up twice in the Quick Reply Box. And I only have the first plugin active, when I have both plugins active, the PHP/HTML/Code BBCodes show up 3 times. Without the second plugin active, they show up twice.

Here is a screenshot:
https://vborg.vbsupport.ru/external/2015/04/10.png


All times are GMT. The time now is 09:56 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01314 seconds
  • Memory Usage 1,742KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (6)bbcode_code_printable
  • (3)bbcode_php_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (8)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete