Tarih: 2009-04-13, 13:21:28 Mesaj konusu: Class Menu
KONUYA BAKIPTA YORUM YAPMAYANIN SAÇLARI AJDAR GİBİ OLSUN
Evet arkadaşlar bugün siteden bir arkadaş menü istedi vermedim.Hem onu üzmemek amaçlı hemde canım sıkılıyordu menü yaptım.Umarım o arkadaşta beğenir.Resim aşağıda.
Görünüm:
Resimde görüldüğü gibi üzerine gelince içeri göçüyor.Anlatıma geçelim
İndex.template.phpde bulun.
Kod:
// Show the menu up top. Something like [home] [help] [profile] [logout]...
Yukarıda verdiğim kod dahil aşağıdaki koda kadar silin(aşağıdaki kodu silmeyin).
Kod:
// Generate a strip of buttons.
Kalan yere bunu yapıştırın.
Kod:
// Show the menu up top. Something like [home] [help] [profile] [logout]...
// Class menu baslangici by SMFGrup.CoM for sasuke
function template_menu()
{
global $context, $settings, $options, $scripturl, $txt;
echo '
<ul>';
// Show the default [home] button.
echo '<li><a href="', $scripturl, '"><b>' , $txt[103] , '</b></a></li>';
// Show the [help] button.
echo '<li><a href="', $scripturl, '?action=help"><b>' , $txt[119] , '</b></a></li>';
// How about the [search] button?
if ($context['allow_search'])
echo '<li><a href="', $scripturl, '?action=search"><b>' , $txt[182] , '</b></a></li>';
// Is the user allowed to administrate at all? ([admin])
if ($context['allow_admin'])
echo '<li><a href="', $scripturl, '?action=admin"><b>' , $txt[2] , '</b></a></li>';
// The [calendar]!
if ($context['allow_calendar'])
echo '<li><a href="', $scripturl, '?action=calendar"><b>' , $txt['calendar24'] , '</b></a></li>';
// the [member] list button
if ($context['allow_memberlist'])
echo '<li><a href="', $scripturl, '?action=mlist"><b>' , $txt[331] , '</b></a></li>';
// If the user is a guest, show [login] button.
if ($context['user']['is_guest'])
echo '<li><a href="', $scripturl, '?action=login"><b>' , $txt[34] , '</b></a></li>';
// If the user is a guest, also show [register] button.
if ($context['user']['is_guest'])
echo '<li><a href="', $scripturl, '?action=register"><b>' , $txt[97] , '</b></a></li>';
// Otherwise, they might want to [logout]...
if ($context['user']['is_logged'])
echo '<li><a href="', $scripturl, '?action=logout;sesc=', $context['session_id'], '"><b>' , $txt[108] , '</b></a></li>';
echo '</ul>';
// Class menu bitişi by SMFGrup.CoM - SMFTeMa.CoM
}
Bu işlemleri yaptıktan sonra style.cssde en alta şunları ekleyin.
Bu forumda yeni başlıklar açamazsınız Bu forumdaki başlıklara cevap veremezsiniz Bu forumdaki mesajlarınızı değiştiremezsiniz Bu forumdaki mesajlarınızı silemezsiniz Bu forumdaki anketlerde oy kullanamazsınız