2.0 RC3 Theme illustrative by fussilet
teması kullanıyorum
./Themes/default/BoardIndex.template.php
// If the board is new, show a strong indicator. if ($board['new']) echo '<img src="', $settings['images_url'], '/on.gif" alt="', $txt[333], '" title="', $txt[333], '" />'; // This board doesn't have new posts, but its children do. elseif ($board['children_new']) echo '<img src="', $settings['images_url'], '/on2.gif" alt="', $txt[333], '" title="', $txt[333], '" />'; // 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'];
./Themes/default/MessageIndex.template.php
// If the board is new, show a strong indicator. if ($board['new']) { if (file_exists($settings['theme_dir'] . '/icons/' . $board['id'] . '/on.png')) $board_new_img=$settings['theme_url']. '/icons/' . $board['id'] . '/on.png'; else $board_new_img=$settings['images_url']. '/on.png'; echo '<img src="', $board_new_img,'" alt="', $txt[333], '" title="', $txt[333], '" border="0" />'; } elseif ($board['children_new']) { if (file_exists($settings['theme_dir'] . '/icons/' . $board['id'] . '/on2.png')) $childboard_new_img=$settings['theme_url']. '/icons/' . $board['id'] . '/on2.png'; else $childboard_new_img=$settings['images_url']. '/on2.png'; echo '<img src="', $childboard_new_img,'" alt="', $txt[333], '" title="', $txt[333], '" border="0" />'; } else { if (file_exists($settings['theme_dir'] . '/icons/' . $board['id'] . '/off.png')) $board_nonew_img=$settings['theme_url']. '/icons/' . $board['id'] . '/off.png'; else $board_nonew_img=$settings['images_url']. '/off.gif'; echo '<img src="', $board_nonew_img,'" alt="', $txt[334], '" title="', $txt[334], '" border="0" />'; } echo '</a> </td> <td class="windowbg2"> <b><a href="', $board['href'], '" name="b', $board['id'], '">', $board['name'], '</a></b><br /> ', $board['description'];
./Themes/default/MessageIndex.template.php
Find: [Select]
// If the board is new, show a strong indicator. if ($board['new']) echo '<img src="', $settings['images_url'], '/on.gif" alt="', $txt[333], '" title="', $txt[333], '" />'; // This board doesn't have new posts, but its children do. elseif ($board['children_new']) echo '<img src="', $settings['images_url'], '/on2.gif" alt="', $txt[333], '" title="', $txt[333], '" />'; // No new posts at all! The agony!! else echo '<img src="', $settings['images_url'], '/off.gif" alt="', $txt[334], '" title="', $txt[334], '" />';
Replace With: [Select]
// If the board is new, show a strong indicator. if ($board['new']) { if (file_exists($settings['theme_dir'] . '/icons/' . $board['id'] . '/on.png')) $board_new_img=$settings['theme_url']. '/icons/' . $board['id'] . '/on.png'; else $board_new_img=$settings['images_url']. '/on.png'; echo '<img src="', $board_new_img,'" alt="', $txt[333], '" title="', $txt[333], '" border="0" />'; } elseif ($board['children_new']) { if (file_exists($settings['theme_dir'] . '/icons/' . $board['id'] . '/on2.png')) $childboard_new_img=$settings['theme_url']. '/icons/' . $board['id'] . '/on2.png'; else $childboard_new_img=$settings['images_url']. '/on2.png'; echo '<img src="', $childboard_new_img,'" alt="', $txt[333], '" title="', $txt[333], '" border="0" />'; } else { if (file_exists($settings['theme_dir'] . '/icons/' . $board['id'] . '/off.png')) $board_nonew_img=$settings['theme_url']. '/icons/' . $board['id'] . '/off.png'; else $board_nonew_img=$settings['images_url']. '/off.gif'; echo '<img src="', $board_nonew_img,'" alt="', $txt[334], '" title="', $txt[334], '" border="0" />'; } echo '</a> </td> <td class="windowbg2"> <b><a href="', $board['href'], '" name="b', $board['id'], '">', $board['name'], '</a></b><br /> ', $board['description'];
bu kodları bulamıyorum default temadada aradım yok yani burdaki gibi yok
333 numaralar falan yok benim kullandığım temaya nasıl uyarlarım
forum/Themes/default/icons
forum/Themes/default/icons/board_id/on.png
forum/Themes/default/icons/board_id/on2.png
forum/Themes/default/icons/board_id/off.png
board id nosunu 1 yaptım
bu şekilde dosyada attim temaya ama resimler görünmedi