Forumumuzdan Daha Kaliteli Yararlanmak İçin 2 Dakikanızı Ayırıp Üye Olunuz.Üye Olduktan Sonra Emailinize Gelen Aktivasyon Koduyla Üyeliğinizi Aktif Etmeyi Unutmayınız...
Forumumuzdan Daha Kaliteli Yararlanmak İçin 2 Dakikanızı Ayırıp Üye Olunuz.Üye Olduktan Sonra Emailinize Gelen Aktivasyon Koduyla Üyeliğinizi Aktif Etmeyi Unutmayınız...
Would you like to react to this message? Create an account in a few clicks or log in to continue.



 
AnasayfaLatest imagesAramaKayıt OlGiriş yap
Çok YAKINDA Yepyeni Bir Tema ile Geliyoruz Sitemiz Baştan yenilecek ve Yönetici alımları olacaktır.

 

 AUTO-EMBED VIDEO & AUDIO (Aeva) [manueL]

Aşağa gitmek 
YazarMesaj
Memalix
Administrator
Administrator
Memalix


Mesaj Sayısı : 249
Rep Gücü : 2
Kayıt tarihi : 19/03/10
Yaş : 28
Nerden : D:\

AntiFebe
AntiFebe AntiFebe:
AUTO-EMBED VIDEO & AUDIO (Aeva) [manueL] Imgleft0/0AUTO-EMBED VIDEO & AUDIO (Aeva) [manueL] Emptybarbleue  (0/0)

AUTO-EMBED VIDEO & AUDIO (Aeva) [manueL] Empty
MesajKonu: AUTO-EMBED VIDEO & AUDIO (Aeva) [manueL]   AUTO-EMBED VIDEO & AUDIO (Aeva) [manueL] EmptySalı Nis. 06, 2010 4:16 pm

http://custom.simplemachines.org/mods/index.php?mod=977

Created By:
Nao 尚



Manuel anlatım
./Sources/Load.php'de
buL:
Kod: [Seç]
$profile['signature'] = parse_bbc

DeğişTiR:
Kod: [Seç]

// Aeva - START
// Prevent embedding in signatures
$context['aeva_disable'] = 1;
// Aeva - END

$profile['signature'] = parse_bbc

./Sources/Post.php
buL:
Kod: [Seç]
// Previewing? Go back to start.
if (isset($_REQUEST['preview']))
return Post();

DeğişTiR:
Kod: [Seç]
// Aeva - START
// On posting new topic/reply/full modify: replace embed HTML, do lookups, and/or check whether YouTube links are embeddable
if (!empty($_POST['message']))
{
global $sourcedir;
@include_once($sourcedir . '/Subs-Aeva.php');
if (function_exists('aeva_onposting'))
$_POST['message'] = aeva_onposting($_POST['message']);
}
// Aeva - END

// Previewing? Go back to start.
if (isset($_REQUEST['preview']))
return Post();

buL:
Kod: [Seç]
$post_errors[] = 'long_message';
unset($_POST['message']);
}
else
{

DeğişTiR:
Kod: [Seç]
$post_errors[] = 'long_message';
unset($_POST['message']);
}
else
{
// Aeva - START
// On Quick Edit - Only call if message is set.
if (!empty($_POST['message']))
{
global $sourcedir;
@include_once($sourcedir . '/Subs-Aeva.php');
if (function_exists('aeva_onposting'))
$_POST['message'] = aeva_onposting($_POST['message']);
}
// Aeva - END



./Sources/Subs.php

buL:
Kod: [Seç]
$open_tags = array();
$message = strtr($message, array(" " => '
'));

DeğişTiR:
Kod: [Seç]
$open_tags = array();
$message = strtr($message, array(" " => '
'));

// Aeva - START
// Protect noembed & autolink items from embedding *before* BBC parsing - wrap quotes, but don't protect
if (empty($context['uninstalling']) && !empty($modSettings['aeva_enable']) && strlen($message) > 15)
{
global $sourcedir;
@include_once($sourcedir . '/Subs-Aeva.php');
if (function_exists('aeva_preprotect'))
aeva_preprotect($message, $cache_id);
}
// Aeva - END

buL:
Kod: [Seç]
$message
= strtr($message, array(' ' => '  ', " " => '', " "
=> '
', '
' => '
 ',
'' => " "));

DeğişTiR:
Kod: [Seç]
$message
= strtr($message, array(' ' => '  ', " " => '', " "
=> '
', '
' => '
 ',
'' => " ")); // Aeva - START // Do the actual embedding global
$sourcedir; @include_once($sourcedir . '/Subs-Aeva.php'); if
(function_exists('aeva_parse_bbc2')) aeva_parse_bbc2($message,
$smileys, $cache_id); // Aeva - END

./Sources/Subs-Editor.php

buL:
Kod: [Seç]
$text = parse_bbc($text, true, '', $allowed_tags);

DeğişTiR:
Kod: [Seç]
// Aeva - START
// Prevents embedding in WYSIWYG
global $context;
$context['aeva_disable'] = 1;
// Aeva - END

$text = parse_bbc($text, true, '', $allowed_tags);

./Sources/ManageSettings.php

buL:

Kod: [Seç]
// Mod authors, once again, if you have a whole section to add do it AFTER this line, and keep a comma at the end.

DeğişTiR:

Kod: [Seç]
'aeva' => 'ModifyAevaSettings',
'aevasites' => 'ModifyAevaSettings',
// Mod authors, once again, if you have a whole section to add do it AFTER this line, and keep a comma at the end.

buL:
Kod: [Seç]
'description' => $txt['modification_settings_desc'],
'tabs' => array(
'general' => array(
),

DeğişTiR:

Kod: [Seç]

'description' => $txt['modification_settings_desc'], 'tabs' =>
array( 'general' => array( ), 'aeva' => array( // Loads our
language file if it hasn't been loaded already 'label' =>
!isset($txt['aeva']) ? (loadlanguage('Aeva') == false ?
(loadLanguage('Aeva', 'english') == false ? 'Aeva' : $txt['aeva']) :
$txt['aeva']) : $txt['aeva'], 'description' => $txt['aeva_desc'], ),
'aevasites' => array( 'label' => !isset($txt['aeva_sites']) ?
'Aeva Sites' : $txt['aeva_sites'], 'description' =>
$txt['aeva_desc'], ),


./Sources/Admin.php

buL:
Kod: [Seç]
// Mod Authors for a "ADD AFTER" on this line. Ensure you end your change with a comma. For example:
DeğişTiR:
Kod: [Seç]
// Aeva - START
'aeva' => array(loadlanguage('Aeva') == false ? 'Aeva' : $txt['aeva']),
'aevasites' => array(!isset($txt['aeva_sites']) ? 'Aeva Sites' : $txt['aeva_sites']),
// Aeva - END
// Mod Authors for a "ADD AFTER" on this line. Ensure you end your change with a comma. For example:


buL:

Kod: [Seç]
// Mod authors if you want to be "real freaking good" then add any setting pages for your mod BELOW this line!


DeğilTiR:
Kod: [Seç]
// Mod authors if you want to be "real freaking good" then add any setting pages for your mod BELOW this line!
array('ModifyAevaSettings', 'area=modsettings;sa=aeva'),

ekTeki dosyaLarı aşağıdaki dekiLde yerLerıne yollayınız xD

./Sources/Subs-Aeva.php
./Sources/Subs-Aeva-Admin.php
./Sources/Subs-Aeva-Sites.php
./Sources/Subs-Aeva-Custom-Example.php
./Themes/default/languages/Aeva.english.php
./Themes/default/languages/Aeva.french.php
./Themes/default/languages/Aeva.english-utf8.php
./Themes/default/languages/Aeva.english_british.php
./Themes/default/languages/Aeva.english_british-utf8.php
./expressInstall.swf

tamamen kendı çevirimdir aLınTı deıLdır.. yanLıs yapmıs ısem düzelteLim

bu arada 1.1.8 ve 2.0 sürümLerine uyar.. ekTeki dosyanın ıcınde
sürümünüz 1.1.x ise install-1.1.x.xml
sürümünüz 2.x.x ise install-2.x.xml
dosyasını bir kerecık caLısTırın


TÜRKÇE ÇEVİRİSİ (Aeva.turkish.php) EK DOSYADA VERİLMİŞTİR (temanın languages klasörünün içine atınız)

Not: anlatım default temaya gore yapılmıştır.
Sayfa başına dön Aşağa gitmek
 
AUTO-EMBED VIDEO & AUDIO (Aeva) [manueL]
Sayfa başına dön 
1 sayfadaki 1 sayfası
 Similar topics
-
» Maicon'dan Müthiş Bir Gol [Video]
» Portakal soyulur mu (Video)
» Eziklerin efendisi (video)
» Pendik Efsanesi :))) (video)
» Nevizade geceleri resim + video

Bu forumun müsaadesi var:Bu forumdaki mesajlara cevap veremezsiniz
 :: Anti Febe Genel Forum :: Serbest Kürsü-
Buraya geçin: