Quote:
Originally Posted by Lynne
If you are in debug mode, then you get a list of the hooks the page goes through on the bottom of the page. I'd try a few of the hook locations around where the postbit_display_* hooks are:
|
Thank you for your advice. Looks like I've set hooks right before, looks like my problem in appears, because this code doesn't work
if (function_exists("handle_testResults") == false)
{
function handle_testResults(&$parser, $param)
{
global $post, $vbulletin;
echo "111111111111111111111111111111";
return "222222222222222222222222";
}
}
$this->tag_list['no_option']['test_results']['callback'] = 'handle_external';
$this->tag_list['no_option']['test_results']['external_callback'] = 'handle_testResults';
I think here I am using incorrect call to my function, wich must return "222222222222222222222222" instead text inside tag...
Actualy bbcode_create works, but it display same result for all users...:-( How I can process post only if it have [test_results] tag for each user with his own result? Just I don't want to parse all messages in thread, I am trying to make code, wich will work only with messages with custom tag. Thanks.