Спойлер на аяксе для форума phpBB 3 с отображением изображений в всплывающем окне (через prettyPhoto, Highslide, Lightbox2 или Fancybox3)
PPK
Beer
Siava
androI
androI
PPK
Код: Выделить всё
ajax_submit_preview
misterleks
misterleks
ext/boardtools/quickreply/functions/plugins_helper.php
после
Код: Выделить всё
'S_QR_SHOW_BUTTON_TRANSLIT' => $this->config['qr_show_button_translit'],
// end mod Translit
Код: Выделить всё
//BB3SPOILER
'S_BB3SPOILER_INSTALLED' => $this->phpbb_extension_manager->is_enabled('ppk/bb3spoiler'),
ext/boardtools/quickreply/styles/all/template/quickreply_core.js
после
Код: Выделить всё
attachments: res.PREVIEW_ATTACH
});
Код: Выделить всё
if (quickreply.plugins.bb3spoiler) {
$preview.bb3Spoiler();
}
Код: Выделить всё
$tempContainer.html(content);
Код: Выделить всё
if (quickreply.plugins.bb3spoiler) {
$tempContainer.html(content).bb3Spoiler();
} else {
$tempContainer.html(content);
}
Код: Выделить всё
$(this).html(content);
Код: Выделить всё
if (quickreply.plugins.bb3spoiler) {
$(this).html(content).bb3Spoiler();
} else {
$(this).html(content);
}
Код: Выделить всё
quickreply.$.qrPosts.html(content);
Код: Выделить всё
if (quickreply.plugins.bb3spoiler) {
quickreply.$.qrPosts.html(content).bb3Spoiler();
} else {
quickreply.$.qrPosts.html(content);
}
Код: Выделить всё
seo: <!-- IF SEO_PHPBB_URL -->true<!-- ELSE -->false<!-- ENDIF -->
Код: Выделить всё
seo: <!-- IF SEO_PHPBB_URL -->true<!-- ELSE -->false<!-- ENDIF -->,
bb3spoiler: <!-- IF S_BB3SPOILER_INSTALLED -->true<!-- ELSE -->false<!-- ENDIF -->
PPK
Спасибо, давно ждал!PPK писал(а):Для phpBB 3.2, BB3Spolier 1.4.1, QuickReply Reloaded 2.0.0-beta
Siava