Subject: Useful ABBC add-ons
I've been adding features to my forum and thought maybe other people would be interested in my solutions. To add any of these to your own forum, simply copy the code into your abbctags.php file (in unb_lib/plugins)
Youtube videos
Some users wanted to see inline youtube videos, so I created an ABBC tag called [toob]. The code is:
Note that it requires the user enclose only the video ID, not the entire video URL. For example, [toob]Qr4S-43ss2![/toob] This is so I didn't have to add any logic to prevent them from linking any evil flash files.
Youtube videos
Some users wanted to see inline youtube videos, so I created an ABBC tag called [toob]. The code is:
$ABBC['Tags']['toob'] = array(
'htmlopen0' => '<center><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/$1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com.au/v/$1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>',
'htmlcont0' => '',
'htmlclose0' => '</center>',
'textcont0' => 'http://www.youtube.com/v/$1',
'htmlblock' => true,
'minparam' => 0,
'maxparam' => 0,
'openclose' => true,
'nocase' => true,
'nested' => false,
'proccont' => true,
'subset' => ABBC_CUSTOM
);
'htmlopen0' => '<center><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/$1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com.au/v/$1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>',
'htmlcont0' => '',
'htmlclose0' => '</center>',
'textcont0' => 'http://www.youtube.com/v/$1',
'htmlblock' => true,
'minparam' => 0,
'maxparam' => 0,
'openclose' => true,
'nocase' => true,
'nested' => false,
'proccont' => true,
'subset' => ABBC_CUSTOM
);
Note that it requires the user enclose only the video ID, not the entire video URL. For example, [toob]Qr4S-43ss2![/toob] This is so I didn't have to add any logic to prevent them from linking any evil flash files.


NFG
Show profile
Link to this post