2
0
mirror of https://github.com/koreader/koreader synced 2024-11-10 01:10:34 +00:00
koreader/plugins/hello.koplugin/main.lua

32 lines
768 B
Lua
Raw Normal View History

-- 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"),
2016-12-27 10:03:11 +00:00
callback = function()
UIManager:show(InfoMessage:new{
text = _("Hello, plugin world"),
})
end,
}
end
return Hello