summaryrefslogtreecommitdiffstats
path: root/mdadm-controller.lua
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2012-04-18 01:28:19 +0000
committerTed Trask <ttrask01@yahoo.com>2012-04-18 01:28:19 +0000
commitcd0087e685168f3afba0047dd89561a42edeb550 (patch)
treee4d351297debd6deb48ada91836eb86bc23ad7ad /mdadm-controller.lua
parent3d3c2c1f444b5d6ef34b1311a7f186e5c5ebd45a (diff)
downloadacf-mdadm-cd0087e685168f3afba0047dd89561a42edeb550.tar.bz2
acf-mdadm-cd0087e685168f3afba0047dd89561a42edeb550.tar.xz
Started work on updating for acf-core-0.15
Removed controllerfunctions library (still needs more work and corresponding work in model) Updated startstop functionality and deleted view Updated for viewfunctions to htmlviewfunctions and modified require statements for acf libraries
Diffstat (limited to 'mdadm-controller.lua')
-rw-r--r--mdadm-controller.lua7
1 files changed, 2 insertions, 5 deletions
diff --git a/mdadm-controller.lua b/mdadm-controller.lua
index 3e3d1ff..88e6de3 100644
--- a/mdadm-controller.lua
+++ b/mdadm-controller.lua
@@ -1,8 +1,5 @@
module(..., package.seeall)
--- Load libraries
-require("controllerfunctions")
-
default_action = "status"
function status(self)
@@ -10,7 +7,7 @@ function status(self)
end
function startstop(self)
- return controllerfunctions.handle_startstop(self, self.model.startstop_service, self.clientdata)
+ return self.handle_form(self, self.model.get_startstop, self.model.startstop_service, self.clientdata)
end
function details(self)
@@ -18,5 +15,5 @@ function details(self)
end
function expert(self)
- return controllerfunctions.handle_form(self, self.model.get_filedetails, self.model.update_filedetails, self.clientdata, "Save", "Edit MDADM Config", "Configuration Set")
+ return self.handle_form(self, self.model.get_filedetails, self.model.update_filedetails, self.clientdata, "Save", "Edit MDADM Config", "Configuration Set")
end