Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
acf-postgresql
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ACF
acf-postgresql
Commits
a36006b1
Commit
a36006b1
authored
Apr 28, 2012
by
Ted Trask
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated for handle_form now passing self to get and set functions
parent
eda53d1d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
postgresql-model.lua
postgresql-model.lua
+4
-4
No files found.
postgresql-model.lua
View file @
a36006b1
...
@@ -34,11 +34,11 @@ end
...
@@ -34,11 +34,11 @@ end
-- ################################################################################
-- ################################################################################
-- PUBLIC FUNCTIONS
-- PUBLIC FUNCTIONS
function
get_startstop
(
clientdata
)
function
get_startstop
(
self
,
clientdata
)
return
modelfunctions
.
get_startstop
(
processname
)
return
modelfunctions
.
get_startstop
(
processname
)
end
end
function
startstop_service
(
startstop
,
action
)
function
startstop_service
(
s
elf
,
s
tartstop
,
action
)
return
modelfunctions
.
startstop_service
(
startstop
,
action
)
return
modelfunctions
.
startstop_service
(
startstop
,
action
)
end
end
...
@@ -67,6 +67,6 @@ function getfiledetails(filename)
...
@@ -67,6 +67,6 @@ function getfiledetails(filename)
return
modelfunctions
.
getfiledetails
(
filename
,
determinefilelist
())
return
modelfunctions
.
getfiledetails
(
filename
,
determinefilelist
())
end
end
function
updatefiledetails
(
filedetails
)
function
updatefiledetails
(
self
,
filedetails
)
return
modelfunctions
.
setfiledetails
(
filedetails
,
determinefilelist
())
return
modelfunctions
.
setfiledetails
(
self
,
filedetails
,
determinefilelist
())
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment