diff options
author | Ted Trask <ttrask01@yahoo.com> | 2008-07-02 15:56:04 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2008-07-02 15:56:04 +0000 |
commit | 997b4dcd33463841aa8f1ca6d59dea7bc9d38ae9 (patch) | |
tree | 31555c8bdf9da14b96e146569b4c5dab3138d6f6 /lib/cfe.lua | |
parent | 9a0afb466ef66b0d27fd12652c3fe198d4fcfe6d (diff) | |
download | acf-core-997b4dcd33463841aa8f1ca6d59dea7bc9d38ae9.tar.bz2 acf-core-997b4dcd33463841aa8f1ca6d59dea7bc9d38ae9.tar.xz |
Modified core to create model and controller function libraries and some common html views. Moved cfe to a library. Modified redirect_to_referrer function - may break some pages.
git-svn-id: svn://svn.alpinelinux.org/acf/core/trunk@1267 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'lib/cfe.lua')
-rw-r--r-- | lib/cfe.lua | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/cfe.lua b/lib/cfe.lua new file mode 100644 index 0000000..34a249d --- /dev/null +++ b/lib/cfe.lua @@ -0,0 +1,15 @@ +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 |