Краткая информация о модуле (хаке)
Автор: rocksmart
Версия DLE:
10.2
Установка: для dle 10.2
engine/skins/default.skin.php
Найти
После вставить
Ниже пред частью кода
Вставить
engine/skins/default.skin.php
Найти
<li><span class=\"glow\"></span><a href=\"?mod=options&action=options\"><i class=\"icon-globe icon-2x\"></i><span>{$lang['header_all']}</span></a></li>
После вставить
<li><span class=\"glow\"></span><a href=\"#\" onclick=\"online_document();return false\"><i class=\"icon-file icon-2x\"></i><span>Онлайн документация</span></a></li>
Ниже пред частью кода
} else $sidebar = "";
Вставить
$sidebar .= '
<script language="javascript" type="text/javascript">
function online_document(){
$("#onlinedocument").remove();
$("body").append("<div id=\'onlinedocument\' title=\'Онлайн документация\' style=\'display:none\'></div>");
$("#onlinedocument").dialog({
autoOpen: true,
width: $(window).width(),
height: $(window).height(),
dialogClass: "modalfixed",
open: function(event, ui) {
$("#onlinedocument").html(\'<iframe name="onlinedocumentframe" id="onlinedocumentframe" width="100%" height="100%" src="http://dle-news.ru/extras/online/index.html" frameborder = "no"></iframe>\');
},
beforeClose: function(event, ui) {
$("#onlinedocument").html("");
}
});
return false;
};
</script>';