Скачать AntiDLE Clone v.2.0
Модуль безопасности! Защита вашего сайта от тотального копи паста ваших новостей (граббер и т.д.)
Тестировался: DataLife Engine 8.2,8.3, 8.5.
Установка
Загрузить файл .htaccess в папку с вашим шаблоном.
Открыть index.php
Найти:
$tpl->load_template ( 'main.tpl' );
Заменить:
$Clonestop = rand(1,3);
if( $Clonestop == 1 ){
$Clonestop_tpl = <<<HTML
<div id="news-id-{$row['id']}" style="display:inline;">( 'main.tpl' )</div>
HTML;
}
if( $Clonestop == 2 ){
$Clonestop_tpl = <<<HTML
<span id="news-id-{$row['id']}" style="display:inline;">( 'main.tpl' )</span>
HTML;
}
if( $Clonestop == 3 ){
$Clonestop_tpl = <<<HTML
<table id="news-id-{$row['id']}" style="display:inline;">( 'main.tpl' )</table>
HTML;
}
$tpl->load_template ( 'main.tpl', stripslashes( $Clonestop_tpl ) );
Открыть engine/modules/show.short.php
Найти:
$tpl->set( '{short-story}', stripslashes( "<div id=\"news-id-" . $row['id'] . "\" style=\"display:inline;\">" . $row['short_story'] . "</div>" ) );
Заменить:
$Clonestop = rand(1,3);
if( $Clonestop == 1 ){
$Clonestop_tpl = <<<HTML
<div id="news-id-{$row['id']}" style="display:inline;">{$row['short_story']}</div>
HTML;
}
if( $Clonestop == 2 ){
$Clonestop_tpl = <<<HTML
<span id="news-id-{$row['id']}" style="display:inline;">{$row['short_story']}</span>
HTML;
}
if( $Clonestop == 3 ){
$Clonestop_tpl = <<<HTML
<table id="news-id-{$row['id']}" style="display:inline;">{$row['short_story']}</table>
HTML;
}
$tpl->set( '{short-story}', stripslashes( $Clonestop_tpl ) );
Зарегистрируйтесь чтобы увидеть что тут скрыто.