bbcode_fetch_tags:
PHP Code:
// [VIDEO]
$tag_list['no_option']['video'] = array(
'callback' => 'handle_external',
'external_callback' => 'handle_bbcode_video',
'strip_empty' => true
);
bbcode_create:
PHP Code:
// include our custom functions
require_once(DIR . '/inc.php');
Contents of inc.php:
PHP Code:
<?php
function handle_bbcode_video($value)
{
return 'Your videos:'. $value;
}
?>
Thats what ive got. It doesnt work.
Can I not simply do a return like that? Do I have to do it with a class?