The same thing. Activating or not activating (no matter what) the bbcode_create it also will result into an error while clicking onto the submut reply button. A created tag befor activating the pluging and refreshing the post will make the whole string disappear in the posting. Also if I will only parse
echo $value;
Still something wrong with it but I can't see what.
cu
Gargi
Edit:
Next try
PHP Code:
$tag_list['no_option']['hwelt'] = array(
'callback' => 'handle_external',
'external_callback' => 'handle_bbcode_hwelt_callback',
'strip_empty' => true
);
if(!function_exists('handle_bbcode_hwelt_callback'))
{
function handle_bbcode_hwelt_callback($value)
{
/* return $parsed; */
return "Hallo Welt ".$value;
}
}
Works a bit better. This delivers using
[hwelt]Dieter[/hwelt]
just
Hallo Welt
The Tag itself is parsing, but no php parsing I guess and the missing value.
cu
Gargi
--------------- Added [DATE]1247654019[/DATE] at [TIME]1247654019[/TIME] ---------------
One step further:
PHP Code:
$tag_list['no_option']['hwelt'] = array(
'callback' => 'handle_external',
'external_callback' => 'handle_bbcode_hwelt_callback',
'strip_empty' => true
);
if(!function_exists('handle_bbcode_hwelt_callback'))
{
function handle_bbcode_hwelt_callback(&$parsed, $value)
{
return "Hello world, my name is ".$value."!";
return $parsed;
}
}
This will deliver a
Hello world, my name is Dieter!
So far so good. But how to integrate the php code? As I see the echo comand won't work but the return. So I think I have to place the php code elsewhere. But where?
cu
Gargi