Quote:
Originally Posted by Badshah93
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.