37f98100f1e4f2a09725dda1df8c899029712865
[project/luci.git] /
1 'use strict';
2 'require baseclass';
3 'require form';
4 'require tools.widgets as widgets';
5
6 return baseclass.extend({
7 title: _('IP-Statistics Plugin Configuration'),
8 description: _('The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them.'),
9
10 addFormOptions: function(s) {
11 var o;
12
13 o = s.option(form.Flag, 'enable', _('Enable this plugin'));
14 o.default = '0';
15 }
16 });