- ชื่อ: Board Icon
- ผู้เขียน: UnclEo
- นำเสนอโดย: DexMoreGroup
- ประเภท: Feature Enhancement
- รองรับ: SMF 1.1.xx
- ปรับปรุงล่าสุด: 18 มิถุนายน 2553
รายละเอียด เพิ่ม icon หน้าบอร์ดอีก 1 icon เพื่อให้สามารถสื่อความหมายถึงเนื้อหาภายในบอร์ด ซึ่งสามารถใช้ icon เดิมแสดงสถานะ "มีกระทู้ใหม่" และ "ไม่มีกระทู้ใหม่" ไว้เหมือนเดิม
ตัวอย่าง
แก้ไขไฟล์:file BoardIndex.template.php
ค้นหา -->>
// No new posts at all! The agony!!
else
echo '<img src="', $settings['images_url'], '/off.gif" alt="', $txt[334], '" title="', $txt[334], '" />';
echo '</a>
</td>
<td class="windowbg2">
<b><a href="', $board['href'], '" name="b', $board['id'], '">', $board['name'], '</a></b><br />
', $board['description'];
แก้เป็น -->>
// No new posts at all! The agony!!
else
echo '<img src="', $settings['images_url'], '/off.gif" alt="', $txt[334], '" title="', $txt[334], '" />';
echo '</a>
</td>';
//enhance the icon infront the board by DexMore
echo '
<td class="windowbg" width="50" align="center" valign="middle">
<img src="', $settings['images_url'], '/boardicon/board' . $board['id'] . '.gif" alt="" title="', $board['name'], '" />
</td>';
echo'
<td class="windowbg2">
<b><a href="', $board['href'], '" name="b', $board['id'], '">', $board['name'], '</a></b><br />
', $board['description'];
[/mb]
สร้างโฟลเดอร์ boardicon ใน Themes/.............../images
ตั้งชื่อไฟล์ตาม ID บอร์ด
ตัวอย่าง: board1
สำเร็จเป็น $board/Themes/.............../images/boardicon/board1.gif
แก้ไขความกว้างของตาราง ตามความกว้างของ icon ที่ width="50"
ลิงค์หัวข้อ: http://dexmore.com/topic/289