// Help Access "New" button

This commit is contained in:
fBrignoli
2012-01-10 10:39:00 +00:00
parent 263039540c
commit d2bbab2bb0
6 changed files with 29 additions and 18 deletions
+3 -1
View File
@@ -204,6 +204,7 @@ a.module_toggle_all{color: #268CCD;}
.toolbarBox .process-icon-partialRefund{ background-image: url('../img/process-icon-partial-refund.png');}
.toolbarBox .process-icon-standardRefund{ background-image: url('../img/process-icon-standard-refund.png');}
.toolbarBox .process-icon-help{ background-image: url('../img/process-icon-help.png');}
.toolbarBox .process-icon-help-new{ background-image: url('../img/process-icon-help-new.png');}
div.fix-toolbar {border-bottom: 1px solid #E0E0E0;position:fixed;top:0;opacity:0.9;z-index:1;}
@@ -433,4 +434,5 @@ ul.listForm li {padding-bottom:3px;}
#footer {height:40px; font-size:12px;clear:both;font-size:0.9em;color:#666666}
#footer .footerLeft { float:left; margin-left:10px;}
#footer .footerRight {float:right; margin-right:10px;}
#footer .footer_link, #footer .footer_link:hover { color:#268CCD;}
#footer .footer_link, #footer .footer_link:hover { color:#268CCD;}
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

@@ -9,7 +9,7 @@
'{$doc_version|escape:'htmlall':'UTF-8'}',
'{$country|escape:'htmlall':'UTF-8'}');"
title="{$tooltip|escape:'htmlall':'UTF-8'}">
<span class="process-icon-help"></span>
<span class="{$button_class|escape:'htmlall':'UTF-8'}"></span>
<div>{l s='Help'}</div>
</a>
</li>
+6
View File
@@ -58,6 +58,12 @@ class HelperHelpAccess extends Helper
if (array_key_exists('version', $info) && $info['version'] != '')
{
$last_version = HelpAccess::getVersion($this->label);
$tpl_vars['button_class'] = 'process-icon-help';
if ($last_version < $info['version'])
$tpl_vars['button_class'] = 'process-icon-help-new';
$tpl_vars['label'] = $this->label;
$tpl_vars['iso_lang'] = $this->iso_lang;
$tpl_vars['country'] = $this->country;
+2 -16
View File
@@ -879,23 +879,8 @@ function submitAddcmsAndPreview()
$('#cms').submit();
}
function showHelp(url, label, iso_lang, ps_version, doc_version, country)
{
trackClickOnHelp(label, doc_version);
$('#help-'+label).attr('src','../img/admin/help2.png');
window.open(url +'/'+iso_lang+'/doc/'+label+'?version='+ps_version+'&country='+country+'#', '_blank', 'scrollbars=yes,menubar=no,toolbar=no,location=no,width=517,height=600');
return false;
}
function trackClickOnHelp(label, doc_version)
{
$.ajax({
url: 'ajax.php',
data: 'submitTrackClickOnHelp&label='+ label +'&version='+doc_version
});
}
function checkMultishopDefaultValue(obj, key)
{
if ($(obj).attr('checked') || $('#'+key).hasClass('isInvisible'))
@@ -1072,4 +1057,5 @@ function showAjaxOverlay()
{
$('#ajax_running').slideDown('fast');
clearTimeout(ajax_running_timeout);
}
}
+17
View File
@@ -29,4 +29,21 @@ function displayHelpButton(label, iso_user, country_iso_code, _PS_VERSION_){
}
}
});
}
function showHelp(url, label, iso_lang, ps_version, doc_version, country)
{
trackClickOnHelp(label, doc_version);
$('.help-context-'+label+' span').removeClass().addClass('process-icon-help');
window.open(url +'/'+iso_lang+'/doc/'+label+'?version='+ps_version+'&country='+country+'#', '_blank', 'scrollbars=yes,menubar=no,toolbar=no,location=no,width=517,height=600');
return false;
}
function trackClickOnHelp(label, doc_version)
{
$.ajax({
url: 'ajax.php',
data: 'submitTrackClickOnHelp&label='+ label +'&version='+doc_version
});
}