
02-02-2014, 09:35 AM
|
|
|
Join Date: Jul 2007
Posts: 299
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by kh99
You could try this: create a new plugin using hook location bbcode_create and this code:
Code:
if (!function_exists('handle_bbcode_alg'))
{
function handle_bbcode_alg(&$parser, $code, $option='')
{
$param = str_replace(array(' ', '"', "'"), array('_', '', ''), $code);
return '<a href="http://alg.garron.us/?alg='.$param.'">'.$code.'</a>';
}
}
$this->tag_list['no_option']['alg'] = array(
'callback' => 'handle_external',
'strip_empty' => true,
'stop_parse' => true,
'disable_smilies' => true,
'disable_wordwrap' => true,
'strip_space_after' => 1,
'external_callback' => 'handle_bbcode_alg'
);
if you want to add a button in the editor for that code, you can go to the bbcode manager and create a bbcode with code alg. Set "Use {option}" to No and enter your button image, but you can put in whatever you want for the html replacement and the other settings, since they won't be used.
|
I tried this, but it removed the ' from R' so the URL just had R. The R' has to be R- in the link, as shown in the example in the link I posted.
Quote:
Originally Posted by kh99
Another way might be to installl this mod: https://vborg.vbsupport.ru/showthread.php?t=264896 (a very cool mod which I'm surprised has gotten more attention), then just use the bbcode manager to create a new bbcode, and put the php in the html replacement box, like:
PHP Code:
<?php
$p = str_replace(array(' ', '"', "'"), array('_', '', ''), $param);
return '<a href="http://alg.garron.us/?alg='.$p.'">'.$param.'</a>';
and just to be clear, you then don't need to create any plugins or change anything else.
BTW, I haven't test this, so if you decide to try this way and it doesn't work, let us know.
|
Once I did this, and used the tag, nothing shows up in the post. It just shows up as blank. Additionally, se the comment above about R' needing to show as R- in the link (see example in link).
Thanks guys. Further help would be much appreciated.
|