Mod Name:autoTooltip and autoLinktip
http://custom.simplemachines.org/mods/index.php?mod=1140Type:BBC
codeที่ใช้เพิ่มเติมในsmf2.0.11
./Sources/Subs.phpFind:
);
// Let mods add new BBC without hassle.
call_integration_hook('integrate_bbc_codes', array(&$codes));
// This is mainly for the bbc manager, so it's easy to add tags above. Custom BBC should be added above this line.
Add Before:
array(
'tag' => 'tooltip',
'type' => 'unparsed_equals',
'before' => '<span class="autoTooltip" title="$1">',
'after' => '</span>',
'quoted' => 'optional',
'disabled_after' => ' ($1)',
),
array(
'tag' => 'linktip',
'type' => 'unparsed_commas',
'before' => '<a href="$1" title="$2" class="autoTooltip" target="_blank">',
'after' => '</a>',
'quoted' => 'optional',
'disallow_children' => array('email', 'ftp', 'url', 'iurl'),
'disabled_after' => ' ($1)',
),