MaktüL

MaktüL

Üye
13.04.2007
Astsubay
9.883
Hakkında

#25.03.2008 03:31 0 0 0
  • noimage

    Display.template.php :)
    (buradan)
    // Show information about the poster of this message.

    (buraya kadar sil bu hariç)
    // Done with the information about the poster...
    (bul)
    // Done with the information about the poster...
    (üstüne ekle)
    // Profil tablo by burak.
    echo '
    <TABLE style="TABLE-LAYOUT: fixed" cellSpacing=0 cellPadding=5 width="100%">
    <TBODY>
    <TR>
    <TD class=windowbg9 style="OVERFLOW: hidden" vAlign=top align=middle width="17%" rowSpan=2>
    <TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
    <TBODY>
    <TR>
    <TD width=0%><IMG alt="" src="' . $settings['images_url'] . '/re_b_top1.gif"></TD>
    <TD style="BACKGROUND-IMAGE: url(' . $settings['images_url'] . '/re_b_top2.gif)" width="100%"><IMG alt="" src="' . $settings['images_url'] . '/userinfo.gif" align=right></TD>
    <TD width=0%><IMG alt="" src="' . $settings['images_url'] . '/re_b_top3.gif"></TD></TR>
    <TR>
    <TD style="BACKGROUND-IMAGE: url(' . $settings['images_url'] . '/re_b_mid1.gif)" width=0%></TD>
    <TD style="BACKGROUND-COLOR: white" width="100%">';

    // Show information about the poster of this message.
    echo'
    <b>', $message['member']['link'], '</b>';

    echo' <div class="smalltext">';
    // Show the member's custom title, if they have one.
    if (isset($message['member']['title']) && $message['member']['title'] != '')
    echo '
    ', $message['member']['title'], '<br />';

    // Show the member's primary group (like 'Administrator') if they have one.
    if (isset($message['member']['group']) && $message['member']['group'] != '')
    echo '
    ', $message['member']['group'], '<br />';

    // Don't show these things for guests.
    if (!$message['member']['is_guest'])
    {
    // Show the post group if and only if they have no other group or the option is on, and they are in a post group.
    if ((empty($settings['hide_post_group']) || $message['member']['group'] == '') && $message['member']['post_group'] != '')
    echo '
    ', $message['member']['post_group'], '<br />';
    echo '
    ', $message['member']['group_stars'], '<br /><br />';


    // Show avatars, images, etc.?
    if (!empty($settings['show_user_images']) && empty($options['show_no_avatars']) && !empty($message['member']['avatar']['image']))
    echo '
    <div style="overflow: auto; width: 100%;">', $message['member']['avatar']['image'], '</div><br />';




    // Is karma display enabled?  Total or +/-?
    if ($modSettings['karmaMode'] == '1')
    echo '
    <br />
    ', $modSettings['karmaLabel'], ' ', $message['member']['karma']['good'] - $message['member']['karma']['bad'], '<br />';
    elseif ($modSettings['karmaMode'] == '2')
    echo '
    <br />
    ', $modSettings['karmaLabel'], ' +', $message['member']['karma']['good'], '/-', $message['member']['karma']['bad'], '<br />';

    // Is this user allowed to modify this member's karma?
    if ($message['member']['karma']['allow'])
    echo '
    <a href="', $scripturl, '?action=modifykarma;sa=applaud;uid=', $message['member']['id'], ';topic=', $context['current_topic'], '.' . $context['start'], ';m=', $message['id'], ';sesc=', $context['session_id'], '">', $modSettings['karmaApplaudLabel'], '</a>
    <a href="', $scripturl, '?action=modifykarma;sa=smite;uid=', $message['member']['id'], ';topic=', $context['current_topic'], '.', $context['start'], ';m=', $message['id'], ';sesc=', $context['session_id'], '">', $modSettings['karmaSmiteLabel'], '</a><br />';

    // Show online and offline buttons?
    if (!empty($modSettings['onlineEnable']) && !$message['member']['is_guest'])
    echo '
    ', $context['can_send_pm'] ? '<a href="' . $message['member']['online']['href'] . '" title="' . $message['member']['online']['label'] . '">' : '', $settings['use_image_buttons'] ? '<img src="' . $message['member']['online']['image_href'] . '" alt="' . $message['member']['online']['text'] . '" border="0" style="margin-top: 2px;" />' : $message['member']['online']['text'], $context['can_send_pm'] ? '</a>' : '', $settings['use_image_buttons'] ? '<span class="smalltext"> ' . $message['member']['online']['text'] . '</span>' : '[/swf2][swf3]<br /><br />';

    // Show the member's gender icon?
    if (!empty($settings['show_gender']) && $message['member']['gender']['image'] != '')
    echo '
    ', $txt[231], ': ', $message['member']['gender']['image'], '<br />';

    // Show how many posts they have made.
    echo '
    ', $txt[26], ': ', $message['member']['posts'], '<br />
    <br />';


    // Show their personal text?
    if (!empty($settings['show_blurb']) && $message['member']['blurb'] != '')
    echo '
    ', $message['member']['blurb'], '<br />
    <br />';

    // This shows the popular messaging icons.
    echo '
    ', $message['member']['icq']['link'], '
    ', $message['member']['msn']['link'], '
    ', $message['member']['aim']['link'], '
    ', $message['member']['yim']['link'], '<br />';

    // Show the profile, website, email address, and personal message buttons.
    if ($settings['show_profile_buttons'])
    {
    // Don't show the profile button if you're not allowed to view the profile.
    if ($message['member']['can_view_profile'])
    echo '
    <a href="', $message['member']['href'], '">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/icons/profile_sm.gif" alt="' . $txt[27] . '" title="' . $txt[27] . '" border="0" />' : $txt[27]), '</a>';

    // Don't show an icon if they haven't specified a website.
    if ($message['member']['website']['url'] != '')
    echo '
    <a href="', $message['member']['website']['url'], '" title="' . $message['member']['website']['title'] . '" target="_blank">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/www_sm.gif" alt="' . $txt[515] . '" border="0" />' : $txt[515]), '</a>';

    // Don't show the email address if they want it hidden.
    if (empty($message['member']['hide_email']))
    echo '
    <a href="mailto:', $message['member']['email'], '">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/email_sm.gif" alt="' . $txt[69] . '" title="' . $txt[69] . '" border="0" />' : $txt[69]), '</a>';

    // Since we know this person isn't a guest, you *can* message them.
    if ($context['can_send_pm'])
    echo '
    <a href="', $scripturl, '?action=pm;sa=send;u=', $message['member']['id'], '" title="', $message['member']['online']['label'], '">', $settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/im_' . ($message['member']['online']['is_online'] ? 'on' : 'off') . '.gif" alt="' . $message['member']['online']['label'] . '" border="0" />' : $message['member']['online']['label'], '</a>';
    }
    }
    // Otherwise, show the guest's email.
    elseif (empty($message['member']['hide_email']))
    echo '
    <br />
    <br />
    <a href="mailto:', $message['member']['email'], '">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/email_sm.gif" alt="' . $txt[69] . '" title="' . $txt[69] . '" border="0" />' : $txt[69]), '</a>';

    // Profil tablo kapandı (:
    echo '
    <TD style="BACKGROUND-IMAGE: url(' . $settings['images_url'] . '/re_b_mid2.gif)" width=0%></TD></TR>
    <TR>
    <TD width=0%><IMG alt="" src="' . $settings['images_url'] . '/re_b_bot1.gif"></TD>
    <TD style="BACKGROUND-IMAGE: url(' . $settings['images_url'] . '/re_b_bot2.gif)" width="100%"><IMG alt="" src="' . $settings['images_url'] . '/re_b_bot4.gif" align=left></TD>
    <TD width=0%><IMG alt="" src="' . $settings['images_url'] . '/re_b_bot3.gif"></TD></TR></TBODY></TABLE>';

    ekteki resimleri images e atın

    http://rapidshare.com/files/136268923/mmage.MaktuL.zip.html
#21.03.2008 07:34 0 0 0
  • Mod: SimplePortal
    Yazan: [SiNaN]
    URL: SimplePortal
    Türkçesi: Paket içerisinde mevcut.
    Resim: Ekte.

    Düzeltme

    Açıklama:
    SMF ile tamamiyle bütünleşik geniş yönetim seçeneklerine sahip, kurulumu son derece basit portal. Paket kurulduktan sonra portal kendisini ana sayfa olarak ayarlar. Forum için action=forum kullanılır. Portal teması da forum temasına göre değişir.

    Mevcut blocklar:


    Kullanıcı: Ziyaretçi görüntülediğinde giriş formu, üye görüntülediğinde ise avatar başta olmak üzere üye hakkında geniş bilgi.
    Kimler Online: Sıralı bir şekilde bağlı olan üyeleri gösterir.
    Site İstatistikleri: Forum ile ilgili bir dizi istatistik gösterir.
    Son Üye: Forumu kayıt olan son üyeyi avatarı ile birlikte gösterir.
    Hızlı Arama: Forum içerisinde arama yapmak üzere form içerir.
    Anket: Belirlenen anketi ziyaretçi ve daha önce oylamış üye görüntülediğinde sonuçları; daha önce oylamamış üye görüntülediğinde de oylama seçeneklerini gösterir.
    Aktif Bölümler: Aktif bölümleri sıralar.
    Aktif Konular: Aktif konuları görüntülenme veya cevaplanma sayılarına göre sıralar.
    Duyuru: Forumda kullandığınız duyuruyu veya başka bir duyuru görüntüler.
    Son Mesajlar: Forumdaki son mesajları sıralar.
    Son Konular: Forumdaki son konuları sıralar.

    Portal geniş yönetim seçeneklerine sahip bir de kontrol paneli içerir. Bu panel ile aşağıdaki ayarları yapabilirsiniz:


    Kullanıcı | Üye ayrıntılarını göster?
    Duyuru | Özel duyuruyu kullan?
    Haberler | Avatarı göster?
    Aktif Konular | Sıralama şekli?
    Duyuru | Özel duyuru metni:
    Haberler | Haberler bölümü:
    Haberler | Gösterilecek haber sayısı:
    Haberler | Haber metni uzunluğu:
    Son Mesajlar | Gösterilecek mesaj sayısı:
    Son Konular | Gösterilecek konu sayısı:
    Anket | Gösterilecek anket:
    Aktif Üyeler | Gösterilecek üye sayısı:
    Aktif Bölümler | Gösterilecek bölüm sayısı:
    Aktif Konular | Gösterilecek konu sayısı:
    Sol blokları göster:
    Sağ blokları göster:
    Sol blokların genişliği:
    Sağ blokların genişliği:
    Kullanıcı Menüsü bloğunu göster:
    Kimler Online bloğunu göster:
    İstatistikler bloğunu göster:
    Son Üye bloğunu göster:
    Hızlı Arama bloğunu göster:
    Duyuru bloğunu göster:
    Haberler bloğunu göster:
    Son Mesajlar bloğunu göster:
    Son Konular bloğunu göster:
    Anket bloğunu göster:
    Aktif Üyeler bloğunu göster:
    Aktif Bölümler bloğunu göster:
    Aktif Konular bloğunu göster:

    Bu panele ulaşmak için aşağıdaki yolu izleyin:

    Admin Paneli >> Forum Seçenekleri >> Portal Ayarları

    Kodlama SSI ile büyük ölçüde benzerdir. Kolayca geliştirilebilir. Copyright dışında her türlü değişiklik yapılabilir.

    Paket, SMF Core Default teması, İngilizce dili ve Türkçe dili için değişiklikleri içerir.
    Alıntıdır...

    noimage
    noimage
#21.03.2008 07:31 0 0 0
  • Mod: Automatic Karma
    Yazan: [SiNaN]
    Açıklama: Konu açan veya mesaj gönderen üyelere otomatik olarak belirlenen miktarda karma ekler. Bu iki seçenek de istendiği zaman kapatılabilir.
    URL: Automatic Karma
    Türkçes: Moda dahil.
#21.03.2008 07:29 0 0 0
  • Video Olayında Son Nokta BBC Kodlu

    Evet arkadaşlar sizler için zaman ayırdım ve bütün favori video sitelerinin modlarını bir araya topladım umarım yararlı olur. Video sitelerinin iconlarını ekte verdim. hadi kolay gelsin.


    Eklenenler :

    Pikniktube
    trtube
    Google
    Youtube
    Mynet
    İzlesene
    Yahoovideo
    Metacafe
    Haberturk
    Vidivodo
    Videonuz
    Daily Motion
    livevideo

    başlayalım inş.



    source/Subs.php yi aç bul
    array(
    'tag' => 'green',
    'before' => '<span style="color: green;">',
    'after' => '</span>',
    ),

    üstüne ekle

    array(
    'tag' => 'trtube',
    'type' => 'unparsed_commas_content',
    'test' => '\d+,\d+\]',
    'content' => '<object width="$2" height="$3"><param name="movie" value="http://www.trtube.com/flvplayer_3_7.swf?" ></param><embed src="http://www.trtube.com/flvplayer_3_7.swf?" type="application/x-shockwave-flash" width="$2" height="$3"></embed></object>',
    'validate' => create_function('&$tag, &$data, $disabled[/swf2][swf3]
    if (isset($disabled[\'url\']))
    $tag[\'content\'] = \'$1\';
    $pattern = \'/http:\/\/.+v=(.+)(&.+)*/i\';
    if (preg_match($pattern, $data[0], $matches))
    $data[0] = $matches[1];'),
    'disabled_content' => '<a href="$1" target="_blank">$1</a>',
    ),
    array(
    'tag' => 'pikniktube',
    'type' => 'unparsed_commas_content',
    'test' => '\d+,\d+\]',
    'content' => '<object width="$2" height="$3"><param name="movie" value="http://www.pikniktube.com/player/videoplayer2.swf?sub=medya&vid=$1" ></param><embed src="/www.pikniktube.com/player/videoplayer2.swf?sub=medya&vid=$1" type="application/x-shockwave-flash" width="$2" height="$3"></embed></object>',
    'validate' => create_function('&$tag, &$data, $disabled[/swf2][swf3]
    if (isset($disabled[\'url\']))
    $tag[\'content\'] = \'$1\';'),
    'disabled_content' => '<a href="$1" target="_blank">$1</a>',
    ),
    array(
    'tag' => 'google_video',
    'type' => 'unparsed_commas_content',
    'test' => '\d+,\d+\]',
    'content' => '<object width="$2" height="$3"><param name="movie" value="http://video.google.com/googleplayer.swf?docId=$1" ></param><embed src="http://video.google.com/googleplayer.swf?docId=$1" type="application/x-shockwave-flash" width="$2" height="$3"></embed></object>',


    'validate' => create_function('&$tag, &$data, $disabled[/swf2][swf3]
    if (isset($disabled[\'url\']))
    $tag[\'content\'] = \'$1\';'),
    'disabled_content' => '<a href="$1" target="_blank">$1</a>',
    ),
    array(
    'tag' => 'youtube',
    'type' => 'unparsed_commas_content',
    'test' => '\d+,\d+\]',
    'content' => '<object width="$2" height="$3"><param name="movie" value="http://www.youtube.com/v/$1" ></param><embed src="http://www.youtube.com/v/$1" type="application/x-shockwave-flash" width="$2" height="$3"></embed></object>',
    'validate' => create_function('&$tag, &$data, $disabled[/swf2][swf3]
    if (isset($disabled[\'url\']))
    $tag[\'content\'] = \'$1\';
    $pattern = \'/http:\/\/.+v=(.+)(&.+)*/i\';
    if (preg_match($pattern, $data[0], $matches))
    $data[0] = $matches[1];'),
    'disabled_content' => '<a href="$1" target="_blank">$1</a>',
    ),
    array(
    'tag' => 'haberturk',
    'type' => 'unparsed_commas_content',
    'test' => '\d+,\d+\]',
    'content' => '<object width="$2" height="$3"><param name="movie" value="http://video.haberturk.com/video.swf?server=2&idsi=$1" ></param><embed src="http://video.haberturk.com/video.swf?server=2&idsi=$1" type="application/x-shockwave-flash" width="$2" height="$3"></embed></object>',
    ),
    array(
    'tag' => 'metacafe',
    'type' => 'unparsed_commas_content',
    'test' => '\d+,\d+\]',
    'content' => '<embed src="http://www.metacafe.com/fplayer/$1.swf" type="application/x-shockwave-flash" width="400" height="345"></embed>',
    'validate' => create_function('&$tag, &$data, $disabled[/swf2][swf3]
    if (isset($disabled[\'url\']))
    $tag[\'content\'] = \'$1\';'),
    'disabled_content' => '<a href="$1" target="_blank">$1</a>',
    ),
    array(
    'tag' => 'izlesene',
    'type' => 'unparsed_commas_content',
    'test' => '\d+,\d+\]',
    'content' => '<object width="$2" height="$3"><param name="movie" value="http://www.izlesene.com/player2.swf?izle=/data/videos/$1" ></param><embed src="http://www.izlesene.com/player2.swf?izle=/data/videos/$1" type="application/x-shockwave-flash" width="$2" height="$3"></embed></object>',
    'validate' => create_function('&$tag, &$data, $disabled[/swf2][swf3]
    if (isset($disabled[\'url\']))
    $tag[\'content\'] = \'$1\';'),
    'disabled_content' => '<a href="$1" target="_blank">$1</a>',
    ),
    array(
    'tag' => 'mynet',
    'type' => 'unparsed_commas_content',
    'test' => '\d+,\d+\]',
    'content' => '<object width="$2" height="$3"><param name="movie" value="http://vdo.mynet.com/e/$1" ></param><embed src="http://vdo.mynet.com/e/$1" type="application/x-shockwave-flash" width="$2" height="$3"></embed></object>',
    'validate' => create_function('&$tag, &$data, $disabled[/swf2][swf3]
    if (isset($disabled[\'url\']))
    $tag[\'content\'] = \'$1\';'),
    'disabled_content' => '<a href="$1" target="_blank">$1</a>',
    ),
    array(
    'tag' => 'vidivodo',
    'type' => 'unparsed_commas_content',
    'test' => '\d+,\d+\]',
    'content' => '<embed src="http://www.vidivodo.com/VideoPlayerShare.swf?lang=tr&vidID=$1.flv" type="application/x-shockwave-flash" wmode="transparent" width="425" height="343"></embed>',
    'validate' => create_function('&$tag, &$data, $disabled[/swf2][swf3]
    if (isset($disabled[\'url\']))
    $tag[\'content\'] = \'$1\';'),
    'disabled_content' => '<a href="$1" target="_blank">$1</a>',
    ),
    array(
    'tag' => 'videonuz',
    'type' => 'unparsed_commas_content',
    'test' => '\d+,\d+\]',
    'content' => '<object width="$2" height="$3"><param name="movie" value="http://www.videonuz.com/play.php?video=$1" ></param><iframe src="http://www.videonuz.com/play.php?video=$1" type="application/x-shockwave-flash" width="$2" height="$3"></iframe></object>',
    'validate' => create_function('&$tag, &$data, $disabled[/swf2][swf3]
    if (isset($disabled[\'url\']))
    $tag[\'content\'] = \'$1\';'),
    'disabled_content' => '<a href="$1" target="_blank">$1</a>',
    ),
    array(
    'tag' => 'dmotion',
    'type' => 'unparsed_commas_content',
    'test' => '\d+,\d+\]',
    'content' => '<object width="$2" height="$3"><param name="movie" value="http://www.dailymotion.com/swf/$1" ></param><param name="allowfullscreen" value="true"></param><embed src="http://www.dailymotion.com/swf/$1" type="application/x-shockwave-flash" width="$2" height="$3" allowfullscreen="true"></embed></object>',
    'validate' => create_function('&$tag, &$data, $disabled[/swf2][swf3]
    if (isset($disabled[\'url\']))
    $tag[\'content\'] = \'$1\';'),
    'disabled_content' => '<a href="$1" target="_blank">$1</a>',
    ),
    array(
    'tag' => 'videoyahoo',
    'type' => 'unparsed_commas_content',
    'test' => '\d+,\d+\]',
    'content' => '<embed src="http://us.i1.yimg.com/cosmos.bcst.yahoo.com/player/media/swf/FLVVideoSolo.swf" flashVars="id=$1&emailUrl=http%3A%2F%2Fvideo.yahoo.com%2Futil%2Fmail%3Fei%3DUTF-8%26vid%3D952678%26fr%3D%26cache%3D1&imUrl=http%25253A%25252F%25252Fvideo.yahoo.com%25252Fvideo%25252Fplay%25253Fei%25253DUTF-8%252526vid%25253D952678%252526cache%25253D1&imTitle=The%252BTypewriter&searchUrl=http://video.yahoo.com/search/video?p=&profileUrl=http://video.yahoo.com/video/profile?yid=&creatorValue=$1" width="425" height="350" type="application/x-shockwave-flash" wmode="transparent"></embed>',
    'validate' => create_function('&$tag, &$data, $disabled[/swf2][swf3]
    if (isset($disabled[\'url\']))
    $tag[\'content\'] = \'$1\';'),
    'disabled_content' => '<a href="$1" target="_blank">$1</a>',
    ),
    array(
    'tag' => 'livevideo',
    'type' => 'unparsed_commas_content',
    'test' => '\d+,\d+\]',
    'content' => '<embed src="http://www.livevideo.com/flvplayer/embed/$1" type="application/x-shockwave-flash" quality="high" WIDTH="445" HEIGHT="369" wmode="transparent"></embed>',
    'validate' => create_function('&$tag, &$data, $disabled[/swf2][swf3]
    if (isset($disabled[\'url\']))
    $tag[\'content\'] = \'$1\';'),
    'disabled_content' => '<a href="$1" target="_blank">$1</a>',
    ),


    Post.template.php yi aç bul


    'flash' => array('code' => 'flash[/swf2][swf3]before' => '[flash=200,200][/swf2][swf3]after' => '[/flash][/swf2][swf3]description' => $txt[433]),

    altına ekle

    'trtube' => array('code' => 'trtube[/swf2][swf3]before' => '[trtube=425,350][/swf2][swf3]after' => '[/trtube][/swf2][swf3]description' => $txt['trtube']),
    'pikniktube' => array('code' => 'pikniktube[/swf2][swf3]before' => '[pikniktube=425,350][/swf2][swf3]after' => '[/pikniktube][/swf2][swf3]description' => $txt['pikniktube']),
    'google_video' => array('code' => 'google_video[/swf2][swf3]before' => '[google_video=425,350][/swf2][swf3]after' => '[/google_video][/swf2][swf3]description' => $txt['google_video']),
    'youtube' => array('code' => 'youtube[/swf2][swf3]before' => '[youtube=425,350][/swf2][swf3]after' => '[/youtube][/swf2][swf3]description' => $txt['youtube']),
    'haberturk' => array('code' => 'haberturk[/swf2][swf3]before' => '[haberturk=425,350][/swf2][swf3]after' => '[/haberturk][/swf2][swf3]description' => $txt['haberturk']),
    'metacafe' => array('code' => 'metacafe[/swf2][swf3]before' => '[metacafe=400,345][/swf2][swf3]after' => '[/metacafe]','description' => $txt['Metacafe]),
    'izlesene' => array('code' => 'izlesene[/swf2][swf3]before' => '[izlesene=432,344][/swf2][swf3]after' => '[/izlesene][/swf2][swf3]description' => $txt['izlesene']),
    'mynet' => array('code' => 'mynet[/swf2][swf3]before' => '[mynet=425,350][/swf2][swf3]after' => '[/mynet][/swf2][swf3]description' => $txt['mynet']),
    'vidivodo' => array('code' => 'vidivodo[/swf2][swf3]before' => '[vidivodo=425,343][/swf2][swf3]after' => '[/vidivodo][/swf2][swf3]description' => $txt['vidivodo']),
    'videonuz' => array('code' => 'videonuz[/swf2][swf3]before' => '[videonuz=380,300][/swf2][swf3]after' => '[/videonuz][/swf2][swf3]description' => $txt['videonuz']),
    'dmotion' => array('code' => 'dmotion[/swf2][swf3]before' => '[dmotion=425,350][/swf2][swf3]after' => '[/dmotion][/swf2][swf3]description' => $txt['dmotion']),
    'videoyahoo' => array('code' => 'videoyahoo[/swf2][swf3]before' => '[videoyahoo=425,350][/swf2][swf3]after' => '[/videoyahoo][/swf2][swf3]description' => $txt['videoyahoo']),
    'livevideo' => array('code' => 'livevideo[/swf2][swf3]before' => '[livevideo=445,369][/swf2][swf3]after' => '[/livevideo][/swf2][swf3]description' => $txt['livevideo']),


    languages/Modifications.turkish.php yi aç bul

    ?>

    üstüne ekle

    $txt['trtube'] = 'TrTube';
    $txt['pikniktube'] = 'pikniktube';
    $txt['google_video'] = 'Google Video';
    $txt['youtube'] = 'YouTube';
    $txt['haberturk'] = 'haberturk';
    $txt['metacafe'] = 'metacafe';
    $txt['izlesene'] = 'izlesene';
    $txt['mynet'] = 'MyNet';
    $txt['vidivodo'] = 'vidivodo';
    $txt['videonuz'] = 'videonuz';
    $txt['dmotion'] = 'Daily Motion';
    $txt['videoyahoo'] = 'videoyahoo';
    $txt['livevideo'] = 'livevideo';


    selametle ekteki iconlarıda bbc klasörüne atıyorsunuz

    RapidShare: 1-Click Webhosting
#21.03.2008 07:26 0 0 0
  • noimage

    BoardIndex.template.php yi açalım...

    Çöl ateşi için bulun

    echo '
    <table><tr><td valign="top">
    <span class="smalltext"><b>', $txt['parent_boards'], '</b>:<br/>';
    for($sayac2 = 0; $sayac2 < ceil($sayac/2);$sayac2++)
    echo $children[$sayac2], '<br/>';
    echo '
    </span></td><td width="30"> </td><td valign="top"><span class="smalltext"><br/>';
    for(; $sayac2 < $sayac; $sayac2++)
    echo $children[$sayac2], '<br/>';
    echo '
    </span></td></tr></table>';
    }

    DİLBERMC İÇİN
    Bulalım..

    // Show some basic information about the number of posts, etc.
    echo '
    </td>
    <td class="windowbg" valign="middle" align="center" style="width: 12ex;"><span class="smalltext">
    ', $board['posts'], ' ', $txt[21], ' <br />
    ', $board['topics'],' ', $txt[330], '
    </span></td>
    <td class="windowbg2" valign="middle" width="22%">
    <span class="smalltext">';

    DEFAULT için

    echo '
    </td>

    <td class="windowbg4" valign="middle" width="26%">
    <span class="smalltext">';

    /* The board's and children's 'last_post's have:

    Çöl Ateşinde Altına Ekleyin//Default ve DilberMc de Üstüne Ekleyin..

    // Indexte Kısayolar by MJoRaYuLuN
    if ($context['user']['is_logged'])
    echo'<div align="right">
    <a href="',$scripturl, '?action=notifyboard;sa=' . ($context['is_marked_notify'] ? 'off' : 'on') . ';board=', $board['id'], ';sesc=' . $context['session_id'] . '"><img src="', $settings['images_url'], '/haberver.gif" title="Bu Başlığa Abone Ol" alt="Haberdar Et"></a><a href="', $scripturl, '?action=markasread;sa=board;board=', $board['id'], ';sesc=' . $context['session_id'] . '"><img src="', $settings['images_url'], '/okundusay.gif" title="Bu Başlıktaki Mesajları Okundu Say" alt="Okundu Say"></a><a href="', $scripturl, '?action=unread;board=', $board['id'], '"><img src="', $settings['images_url'], '/sonmsj.gif" title="Bu Başlıktaki Son Mesajlar" alt="Son Mesajlar"></a><a href="' . $scripturl . '?action=post;board=', $board['id'], '"><img src="', $settings['images_url'], '/yenikonu.gif" title="Bu Başlığa Yeni Konu Aç" alt="Yeni Konu"></a>
    </div>';
    // (Bitti) Indexte Kısayolar by MJoRaYuLuN

    Aşağıdaki Resimleri images Klasörüne Atalım.İsimleri Sırasıyla [(haberver.gif, okundusay.gif, sonmsj.gif, yenikonu.gif)İndirdiğiniz Resmin ismi farklı olur diye verdim]

    noimage
    noimage
    noimage
    noimage
#21.03.2008 06:57 0 0 0
  • Display.template.php de bul

    'reply' => array('test' => 'can_reply[/swf2][swf3]text' => 146, 'image' => 'reply.gif[/swf2][swf3]lang' => true, 'url' => $scripturl . '?action=post;topic=' . $context['current_topic'] . '.' . $context['start'] . ';num_replies=' . $context['num_replies']),

    altına ekleyin

    'new_topic' => array((allowedTo('post_new')) ? 1 : 'test' => 'nothinglol[/swf2][swf3]text' => 'smf258[/swf2][swf3]image' => 'new_topic.gif[/swf2][swf3]lang' => true, 'url' => $scripturl . '?action=post;board=' . $context['current_board'] . '.0'),
#21.03.2008 06:56 0 0 0
#20.03.2008 06:16 0 0 0
#13.03.2008 16:01 0 0 0
  • Konu: Dostluk
    Yüreğine sağlık
#01.03.2008 12:35 0 0 0
#29.02.2008 00:06 0 0 0
#28.02.2008 18:27 0 0 0
#26.02.2008 13:19 0 0 0
#20.02.2008 18:14 0 0 0
#19.02.2008 01:08 0 0 0
#18.02.2008 20:39 0 0 0
#18.02.2008 20:38 0 0 0
  • Konunun Başlığına koptum ben ya

    Ağaçlarda ilginçmiş :D
#18.02.2008 20:36 0 0 0
#18.02.2008 00:32 0 0 0