aboutsummaryrefslogtreecommitdiffstats
path: root/admin/themes/default/template/intro.tpl
diff options
context:
space:
mode:
authorpatdenice <patdenice@piwigo.org>2011-04-21 15:12:38 +0000
committerpatdenice <patdenice@piwigo.org>2011-04-21 15:12:38 +0000
commitf5ef4fddd7ce277f27ef4face7933fe5a7406200 (patch)
tree128762355458b207214d41431c3bd9cabbfc6761 /admin/themes/default/template/intro.tpl
parente1fd6aa04b301bb52a9ffa6423ba1885a3e21ddc (diff)
feature:2271
Add pwg.extensions.checkUpdates method to webservices. Add a warning message on intro page if update is availble for piwigo or extensions. Add an "Ignore All" button on extensions update page. git-svn-id: http://piwigo.org/svn/trunk@10538 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/themes/default/template/intro.tpl')
-rw-r--r--admin/themes/default/template/intro.tpl28
1 files changed, 26 insertions, 2 deletions
diff --git a/admin/themes/default/template/intro.tpl b/admin/themes/default/template/intro.tpl
index aa744ac48..0f4dc7c00 100644
--- a/admin/themes/default/template/intro.tpl
+++ b/admin/themes/default/template/intro.tpl
@@ -1,13 +1,37 @@
{combine_script id='jquery.cluetip' load='async' require='jquery' path='themes/default/js/plugins/jquery.cluetip.js'}
{footer_script require='jquery.cluetip'}
-jQuery().ready(function(){ldelim}
- jQuery('.cluetip').cluetip({ldelim}
+var piwigo_need_update_msg = '<a href="admin.php?page=updates">{"A new version of Piwigo is available."|@translate|@escape:"javascript"}</a>';
+var ext_need_update_msg = '<a href="admin.php?page=updates&amp;tab=ext">{"Some upgrades are available for extensions."|@translate|@escape:"javascript"}</a>';
+
+{literal}
+jQuery().ready(function(){
+ jQuery('.cluetip').cluetip({
width: 300,
splitTitle: '|',
positionBy: 'bottomTop'
});
+ jQuery.ajax({
+ type: 'GET',
+ url: 'ws.php',
+ dataType: 'json',
+ data: { method: 'pwg.extensions.checkUpdates', format: 'json' },
+ timeout: 5000,
+ success: function (data) {
+ if (data['stat'] != 'ok')
+ return;
+ piwigo_update = data['result']['piwigo_need_update'];
+ ext_update = data['result']['ext_need_update']
+ if ((piwigo_update || ext_update) && !jQuery(".warnings").is('div'))
+ jQuery("#content").prepend('<div class="warnings"><ul></ul></div>');
+ if (piwigo_update)
+ jQuery(".warnings ul").append('<li>'+piwigo_need_update_msg+'</li>');
+ if (ext_update)
+ jQuery(".warnings ul").append('<li>'+ext_need_update_msg+'</li>');
+ }
+ });
});
+{/literal}
{/footer_script}
<h2>{'Piwigo Administration'|@translate}</h2>