Ext.define('PVE.qemu.CmdMenu', { extend: 'Ext.menu.Menu', initComponent: function() { var me = this; var nodename = me.pveSelNode.data.node; if (!nodename) { throw "no node name specified"; } var vmid = me.pveSelNode.data.vmid; if (!vmid) { throw "no VM ID specified"; } var vmname = me.pveSelNode.data.name; var vm_command = function(cmd, params) { PVE.Utils.API2Request({ params: params, url: '/nodes/' + nodename + '/qemu/' + vmid + "/status/" + cmd, method: 'POST', failure: function(response, opts) { Ext.Msg.alert('Error', response.htmlStatus); } }); }; me.title = "VM " + vmid; me.items = [ { text: gettext('Start'), icon: '/pve2/images/start.png', handler: function() { vm_command('start'); } }, { text: gettext('Shutdown'), icon: '/pve2/images/stop.png', handler: function() { var msg = Ext.String.format(gettext("Do you really want to shutdown VM {0}?"), vmid); Ext.Msg.confirm(gettext('Confirm'), msg, function(btn) { if (btn !== 'yes') { return; } vm_command('shutdown', { timeout: 30 }); }); } }, { text: gettext('Console'), icon: '/pve2/images/display.png', handler: function() { PVE.Utils.openConoleWindow('kvm', vmid, nodename, vmname); } } ]; me.callParent(); } });