lundi 4 janvier 2016

Module iChat 7.0 English Compatible DLE Versions 10.6 10.5 10.4

Module iChat 7.0  English
iChat 7.0  English Compatible DLE Versions 10.6 10.5 10.4

Module iChat 7.0 for DLE English. This module on your server to use must have the support of SQLite3.

* The load on your site with the cache feature will minimize.
* In the message Capability Visitors
* With the new PHP version compatibility (PHP 5.3, 5.4, 5.5)
* Gravatar support SQLite3 and PHP 5.4 support has been added. Use the code below and place you want to show


{include file="engine/modules/iChat/show.php"}


Button code "Chat in new window

<input class="bbcodes" style="font-size: 11px; float: left;" title="Chat in new windowonclick="window.open('/engine/modules/iChat/window.php', '_iChat', 'toolbar=0,location=0,status=0, left=0, top=0, menubar=0,scrollbars=yes,resizable=0,width=620,height=605');" type="button" value="Chat in new window" />


Module Version7.0 (30.05.2015)



mardi 29 décembre 2015

Dark Button Navigation CSS 3 - DLE English

Dark Button Navigation CSS 3 - DLE English

Very easy menu for dark patterns on pure CSS + a picture. The total "weight" menu, only 16 kb!

Download modal window with a time delay - DLE Eglish


This hack allows download files (Attachment) of the modal window with a time delay. The archive is ready file to overwrite.


Setting

- Open engine/modules/functions.php and find

$tpl->compile( 'attachment' );

$replace_1[] = $tpl->result['attachment'];

$tpl->result['attachment'] = str_replace( $row['name'], "\1", $tpl->result['attachment'] );

$replace_2[] = $tpl->result['attachment'];

$tpl->result['attachment'] = '';


-Replace:

$replace_1[] = "<div class="DownLoadWindow">
<div class="quote">
<a href="#" onclick="showDownLoad(); return false;">Download <b>{$row['name']}</b></a>
</div>
</div>
<div id="DownLoadWindow" title="Download {$row['name']}" style="display:none;" >
<table id="timer_1" border="0" cellpadding="2" cellspacing="2"><tbody><tr>
<td>Download will be available through:</td>
<td id="timer_num"></td>
<td>&#1089;&#1077;&#1082;.</td>
</tr></tbody></table>
<div style="display:none" id="timer_2">
Name: <b>{$row['name']}.</b><br /><br />
Size: <b>{$size}.</b> <br /><br />
Downloads: <b>{$row['dcount']} time.</b> <br /><br />
<a href="{$config['http_home_url']}engine/download.php?id={$row['id']}{$area}" >Download <b>{$row['name']}</b></a></div>
</div>
<script type="text/javascript">

timer_num = 15;
function timer_fc(){
if(timer_num>0){
$('#timer_num').text(timer_num);
timer_num--;
setTimeout("timer_fc()", 1000)
}else{
$('#timer_1').hide(); $('#timer_2').show();
}}
timer_fc();

function showDownLoad() {
$(function(){
$('#DownLoadWindow').dialog({
width: 420,
buttons: {
"Close window" : function() {
$(this).dialog("close");
},
}

});
});
}
</script>";
$replace_2[] = "<div class="DownLoadWindow">
<div class="quote">
<a href="#" onclick="showDownLoad(); return false;">Download <b>{$row['name']}</b></a>
</div>
</div>
<div id="DownLoadWindow" title="Download {$row['name']}" style="display:none;" >
<table id="timer_1" border="0" cellpadding="2" cellspacing="2"><tbody><tr>
<td>Download will be available through:</td>
<td id="timer_num"></td>
<td>Sec.</td>
</tr></tbody></table>
<div style="display:none" id="timer_2">
Name: <b>{$row['name']}.</b><br /><br />
Size: <b>{$size}.</b> <br /><br />
downloads: <b>{$row['dcount']} time.</b> <br /><br />
<a href="{$config['http_home_url']}engine/download.php?id={$row['id']}{$area}" >Download <b>{$row['name']}</b></a>
</div></div>
<script type="text/javascript">

timer_num = 40; // The number of the delay in seconds
function timer_fc(){
if(timer_num>0){
$('#timer_num').text(timer_num);
timer_num--;
setTimeout("timer_fc()", 1000)
}else{
$('#timer_1').hide(); $('#timer_2').show();
}}
timer_fc();

function showDownLoad() {
$(function(){
$('#DownLoadWindow').dialog({
width: 420,
buttons: {
"Close window" : function() {
$(this).dialog("close");
},
}

});
});
}
</script>";


Where in a row (timer_num = 40; // The number of the delay in seconds), specify the time delay

- In any file style.css (if this is not possible in any CSS file) at the end of file add:
#timer_num {width:70px; height:70px; background: url('../images/timer.gif') no-repeat; text-align:center; font-size:36px; color:#666}


-Throw timer.gif file in the images folder of your template.

lundi 28 décembre 2015

DLE button cleaning the cache on all pilgrims admin

Introducing hack dle button cleaning the cache on all pilgrims in the admin panel, allows you to display the button clear the cache on all pages of the admin panel. Setting clearing the cache on all pages of the admin panel

Open the file /engine/skins/default.skin.php
Find

<div class="action-nav-normal action-nav-line" style="display: inline-block;">
<div class="action-nav-button nav-small" style="width:180px;">
<a href="{$PHP_SELF}?mod=editnews&amp;action=list" class="tip" title="{$lang['edit_news']}">
<i class="icon-edit"></i>
<span>{$lang['edit_news']}</span>
</a>
<span class="triangle-button blue"><i class="icon-pencil"></i></span>
</div>
</div>


Below add

<div class="action-nav-normal action-nav-line" style="display: inline-block;">
<div class="action-nav-button nav-small" style="width:120px;">
<a id="clrbtn" class="tip" title="{$lang['btn_clearcache']}">
<i class="icon-trash"></i>
<span>{$lang['btn_clearcache']}</span>
</a>
<span class="triangle-button red"><i class="icon-remove"></i></span>
</div>
</div>


To find

$skin_footer = <<<HTML
<!-- maincontent end -->
</div>


Below insert

<script type="text/javascript">
$(function(){

$('#clrbtn').click(function() {

$.get("engine/ajax/adminfunction.php?action=clearcache", function( data ){

$('#cachesize').html('0 b');
Growl.info({
title: '{$lang[p_info]}',
text: data
});

});
return false;
});
});
</script>


Done!
Author: yackers version DataLife Engine: DLE 10.2 and above for example on Dle 10.5

Template uCoz English Theater Kinobar (moviebar)

Template theater Kinobar for uCoz english

Very nice and nice looking pattern on the theme of the movie online. With the installation template is nothing complicated, the template is very attractive.

In the archive you can find all the necessary files to install the template.

The modules are used:

Global blocks
File Catalog
comments
Users
In your File Manager contains folders with graphics. There is also a file constructor for convenient installation template to the site. And of course a file with styles is also present.

mercredi 16 décembre 2015

Templates Grunge Film For DLE 10.6 English

Templates Grunge Film For DLE 10.6 English
Grunge Film For DLE 10.6

Grunge Film for DLE is a movie-themed template for normal operation template advise you to upgrade to the latest version of the engine DLE, because it is adapted exclusively for it.

Template Type: Original
Version DLE: 10.6
Tested: IE, Firefox, Opera
Options: template, psd sources, instructions, fonts
Size: ~ 2,9 Mb

vendredi 4 décembre 2015

Template Premium Blog on uCoz English


A great template for a system uCoz, made carefully and in bright colors. This template is perfect for running your own blog on any subject. And if we make adjustments to the design, you can adapt to anything. This template uses only one module: "Catalog Files". But to adapt and other modules will not be difficult, simply by copying the code module catalog of files and pasted to another.


The archive with the pattern present a constructor that simplifies installation in the extreme. Also in the archive is the HTML version of the template.