summaryrefslogtreecommitdiffstats
path: root/lib/cfe.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lib/cfe.lua')
-rw-r--r--lib/cfe.lua15
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/cfe.lua b/lib/cfe.lua
deleted file mode 100644
index 34a249d..0000000
--- a/lib/cfe.lua
+++ /dev/null
@@ -1,15 +0,0 @@
-module(..., package.seeall)
-
--- create a Configuration Framework Entity (cfe)
--- returns a table with at least "value", "type", and "label"
-cfe = function ( optiontable )
- optiontable = optiontable or {}
- me = { value="",
- type="text",
- label="" }
- for key,value in pairs(optiontable) do
- me[key] = value
- end
- return me
-end
-_G.cfe = cfe