webmcp
view demo-app/app/main/genre/_action/update.lua @ 33:fc98e5c6bfab
add missing debug_table
trace.debug_table prints a table into the log.
trace.debug_table prints a table into the log.
author | Daniel Poelzleithner <poelzi@poelzi.org> |
---|---|
date | Tue Oct 05 05:19:47 2010 +0200 (2010-10-05) |
parents | 9fdfb27f8e67 |
children |
line source
1 local genre
2 local id = param.get_id()
3 if id then
4 genre = Genre:by_id(id)
5 else
6 genre = Genre:new()
7 end
9 if param.get("delete", atom.boolean) then
10 local name = genre.name
11 genre:destroy()
12 slot.put_into("notice", _("Genre '#{name}' deleted", {name = name}))
13 return
14 end
16 param.update(genre, "name", "description")
18 genre:save()
20 if id then
21 slot.put_into("notice", _("Genre '#{name}' updated", {name = genre.name}))
22 else
23 slot.put_into("notice", _("Genre '#{name}' created", {name = genre.name}))
24 end