Code: Select all
-- CATEGORY
---- /api/Category/Creator.json
if url.map("/api/Category/Creator.json") then
result = "false"
msg = "Thao tác không hợp lệ"
if (env.userid ~= 0) then
if (req.method == "POST") then
local param = {
name = req.post.title
}
local title = param.name
if title then
local title_length = string.len(title)
if (title_length < 5 or title_length > 70) then
msg = "Độ dài tiêu đề chuyên mục không hợp lệ (min. 5, max. 70)"
else
local is_ok = api.forum_create(param)
if is_ok then
result = "true"
msg = "Tạo chuyên mục thành công"
else
result = "false"
msg = "Đã xảy ra lỗi trong quá trình tạo chuyên mục"
end
end
end
end
end
print('{ "result" : "' .. result .. '", "msg" : "' .. msg .. '" }')
end
Code: Select all
api.forum_edit({name:req.post.title})
Code: Select all
local check, detail, stats = api.forum_info({id=24715})
print(detail) --// return: [ { "name": "Technical Software", "parentid": 0, "id": 24715, "postnum": 0 } ]
print(stats) --// return: { "total": 1, "count": 1, "pagenum": 1 }