Поиск торрент раздач происходит по названию новости или конкретному доп. полю. Парсит известный торрент трекер Rutor.
Установка поиска раздач по title
Открыть файл /engine/modules/show.full.php!
Найти:
$tpl->set( '{title}', $metatags['title'] );
Для DLE 10.1 выше
$tpl->set( '{title}', $row['title'] );
Ниже добавить:
$nameT = str_replace('\'', '', $row['title']);
$torInfo = <<<JS
<div id="torrent_info"></div>
<div id="torrent_loading" align="center"><img src="https://yourtorrent.ru/images/loading.gif"><br /><b>Поиск торрент раздач, пожалуйста подождите!</b></div>
<script type="text/javascript">
$(function(){
$('#torrent_loading').show();
$.post('https://yourtorrent.ru/torrents.php', { title: '{$nameT}' }, function(data){
$('#torrent_loading').hide();
$('#torrent_info').fadeIn(500).html(data);
});
return false;
});
</script>
JS;
$tpl->set( '{torrents}', $torInfo );
В шаблоне в полной новости вставить в любое место {torrents}
Установка поиска раздач по дополнительному полю!
Открыть файл /engine/modules/show.full.php
Найти:
$tpl->set( '{title}', $metatags['title'] );
Для DLE 10.1 выше
$tpl->set( '{title}', $row['title'] );
Ниже добавить:
$xfieldsdata = xfieldsdataload( $row['xfields'] );
$torInfo = <<<JS
<div id="torrent_info"></div>
<div id="torrent_loading" align="center"><img src="https://yourtorrent.ru/images/loading.gif"><br /><b>Поиск торрент раздач, пожалуйста подождите!</b></div>
<script type="text/javascript">
$(function(){
$('#torrent_loading').show();
$.post('https://yourtorrent.ru/torrents.php', { title: '{$xfieldsdata['название доп поля']}' }, function(data){
$('#torrent_loading').hide();
$('#torrent_info').fadeIn(500).html(data);
});
return false;
});
</script>
JS;
$tpl->set( '{torrents}', $torInfo );
В шаблоне в полной новости вставить в любое место {torrents}
проверено на DLE 11.3 работает)