ผู้เขียน หัวข้อ: ทำtooltipในโพสต์ (bbc)  (อ่าน 633 ครั้ง)

0 สมาชิก และ 1 บุคคลทั่วไป กำลังดูหัวข้อนี้

ออฟไลน์ smf

  • [color=green][i]"ถ้าคุณไม่สามารถอธิบายอย่างง่ายๆ ให้คนอื่นเข้าใจได้แล้วล่ะก็ แสดงว่าคุณยังเข้าใจมันไม่ดีพอ"[/i][/color]
  • Administrator
  • Hero Member
  • *****
  • กระทู้: 1,368
  • พอยท์: 5
    • ดูรายละเอียด
    • pordoo.com
    • อีเมล์
ทำtooltipในโพสต์ (bbc)
« เมื่อ: 28 พฤศจิกายน 2015, 21:15:01 »
Mod Name:autoTooltip and autoLinktip
http://custom.simplemachines.org/mods/index.php?mod=1140
Type:BBC








codeที่ใช้เพิ่มเติมในsmf2.0.11
./Sources/Subs.php
Find:
โค๊ด: [Select]
);

// 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:
โค๊ด: [Select]
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)',
),