You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koreader/plugins/hello.koplugin/main.lua

32 lines
768 B
Lua

-- This is a debug plugin, remove the following if block to enable it
if true then
return { disabled = true, }
end
local InfoMessage = require("ui/widget/infomessage") -- luacheck:ignore
local UIManager = require("ui/uimanager")
local WidgetContainer = require("ui/widget/container/widgetcontainer")
local _ = require("gettext")
local Hello = WidgetContainer:new{
name = 'hello',
is_doc_only = false,
}
function Hello:init()
self.ui.menu:registerToMainMenu(self)
end
function Hello:addToMainMenu(menu_items)
menu_items.hello_world = {
text = _("Hello World"),
callback = function()
UIManager:show(InfoMessage:new{
text = _("Hello, plugin world"),
})
end,
}
end
return Hello