root/luci2/cbi2/widgets/option.c @ 5709

Revision 5709, 287 bytes (checked in by blogic, 3 years ago)

cleanup widgets

Line 
1#include "../cbi.h"
2
3struct cbi_widget_property option_props[] = {
4    { "src", PROP_REQUIRED },
5    { "id", PROP_REQUIRED },
6    { "default", PROP_OPTIONAL },
7};
8
9struct cbi_widget option = {
10    .caps = CAP_DATA | CAP_OPTION,
11    .parent_caps = CAP_SECTION,
12    WPROPS(option_props),
13};
14
15WIDGET(option)
Note: See TracBrowser for help on using the browser.