initial commit of file from CVS for smeserver-phpsysinfo on Sat Sep 7 20:53:46 AEST 2024
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
function renderPlugin_updatenotifier(data) {
|
||||
|
||||
var directives = {
|
||||
updateNotifierNbPackages: {
|
||||
text: function () {
|
||||
return this['packages'];
|
||||
}
|
||||
},
|
||||
updateNotifierNbSecPackages: {
|
||||
text: function () {
|
||||
return this['security'];
|
||||
}
|
||||
}
|
||||
};
|
||||
if ((data['Plugins']['Plugin_UpdateNotifier'] !== undefined) && (data['Plugins']['Plugin_UpdateNotifier']["UpdateNotifier"] !== undefined)){
|
||||
$('#updatenotifier').render(data['Plugins']['Plugin_UpdateNotifier']["UpdateNotifier"], directives);
|
||||
if ((data['Plugins']['Plugin_UpdateNotifier']["UpdateNotifier"]["packages"] == 0) &&
|
||||
(data['Plugins']['Plugin_UpdateNotifier']["UpdateNotifier"]["security"] == 0) ) {
|
||||
$("#updatenotifier-info").html("<strong>No updates available</strong>");
|
||||
}
|
||||
$('#block_updatenotifier').show();
|
||||
} else {
|
||||
$('#block_updatenotifier').hide();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user