Алфавит на DLE
Данный хак поможет вам автоматизировать заполнение алфавитного указателя, и очень легко выводить всё на сайт.
**************************************
 ********** By ATOM***dle.net.ua*******
 **************************************
открыть engine/inc/addnews.php и editnews.php и найти
************
 $catalog_url = $db->safesql( substr( htmlspecialchars( strip_tags( stripslashes( trim( $_POST['catalog_url'] ) ) ) ), 0, 3 ) );
 *********
 вставить ниже 
 *************
 if (empty($catalog_url))
 $catalog_url = $title[0];
 *************
 *************
 Создать файл abc.tpl в папке с шаблоном
 *************
 Содержание "abc.tpl"
 *************
 А | Б | В | Г | Д | Е | Ж | З | И | К | Л | М | Н | О | П | Р | С | Т | У | Ф | Х | Ц | Ч | Ш | Щ | Э | Ю | Я
*********
 открыть "".htaccess"
 *********
 Добавить после "RewriteEngine On"
 *********
 # вывод в виде каталога by ATOM
 RewriteRule ^search/([^/]*).html(/?)+$ index.php?catalog=$1 [L]
 RewriteRule ^search/([^/]*)/page/([0-9]+).html(/?)+$ index.php?catalog=$1&cstart=$2 [L]
 ********
 Открыть main.tpl
 ********
 в нудное место вставить
 ********
{include file="abc.tpl"}
 ********
 Открыть /templates/ВАШ ШАБЛОН/css/style.css
 ********
 В самый низ вставить
 *********
 /* Каталог */
 .abc a {text-decoration: none; color: #1e1e1e;}
 .abc a:hover {color: #f5c242; text-decoration: none;}
 **********