Alıntı yapılan konudaki resimleri gizleyen mod (Remove images from Quotes)

Başlatan tarantula901, 18 Mar 2015, 01:51

« önceki - sonraki »

0 Üyeler ve 1 Ziyaretçi konuyu incelemekte.

tarantula901

Modifikasyon Adı:Remove images from Quotes
Uyumluluk:2.0.1

Açıklama: Paylaşılan konudaki resimlere açma kapama buton ekleyen bir moddur. Butona tıklayınca resimler açılıp tekrar basınca kapanan bir moddur.

Görseller:

http://custom.simplemachines.org/mods/index.php?action=download;mod=2430;id=133818;image

http://custom.simplemachines.org/mods/index.php?action=download;mod=2430;id=133820;image

http://custom.simplemachines.org/mods/index.php?action=download;mod=2430;id=133822;image

İndirme linki :


Sitenizde işlem yapmadan önce mutlaka yedek alın, yedek alın yedek almayı unutmayın her şeyden önce bu önemli

Pm'den ve Skype'den istenilen destekler ücretlidir. Ücret ödememek için lütfen sitede sorunuzu konu açarak sorabilirsiniz.

Ücretli Smf Destek İçin

Sosyal Öğretmeni

Manuel anlatım/kurulum

./Sources/Subs.php

Bul
array(
'tag' => 'html',
'type' => 'unparsed_content',
'content' => '$1',
'block_level' => true,
'disabled_content' => '$1',
),

Sonrasına ekle:

// Remove images from quotes.
         array(
            'tag' => 'img',
            'type' => 'unparsed_content',
            'require_parents' => array('quote'),
            'parameters' => array(
               'alt' => array('optional' => true),
               'width' => array('optional' => true, 'value' => ' width="$1"', 'match' => '(\d+)'),
               'height' => array('optional' => true, 'value' => ' height="$1"', 'match' => '(\d+)'),
            ),
            'content' => '<i>(<a href="$1" target="_blank" onclick="this.parentNode.innerHTML = \'&lt;i\' + \'mg src=\\\'\' + this.href + \'\\\' /\' + \'>\'; return false;">' . $txt['remove_image_from_post'] . '</a>.)</i>',
            'validate' => create_function('&$tag, &$data, $disabled', '$data = strtr($data, array(\'<br />\' => \'\'));'),
            'disabled_content' => '($1)',
         ),
         array(
            'tag' => 'img',
            'type' => 'unparsed_content',
            'require_parents' => array('quote'),
            'content' => '<i>(<a href="$1" target="_blank" onclick="this.parentNode.innerHTML = \'&lt;i\' + \'mg src=\\\'\' + this.href + \'\\\' /\' + \'>\'; return false;">' . $txt['remove_image_from_post'] . '</a>.)</i>',
            'validate' => create_function('&$tag, &$data, $disabled', '$data = strtr($data, array(\'<br />\' => \'\'));'),
            'disabled_content' => '($1)',
         ),

./Themes/default/languages/Modifications.english.php' de

Bul

?>
Öncesine ekle

$txt['remove_image_from_post'] = 'Image removed from quote';

Türkçeleştirmek için

./Themes/default/languages/Modifications.turkish.php' de

Bul

?>
Öncesine ekle:

$txt['remove_image_from_post'] = 'Görüntü alıntı kaldırıldı';
Bundan sonrasını yapmazsanız da sorun olmaz. Yaparsanız daha iyi olur.

./Themes/default/languages/Modifications.english_british.php' de

Bul

?>
Öncesine ekle

$txt['remove_image_from_post'] = 'Image removed from quote';
Herkes göründüğü gibi değil.