forked from hummypkg/webif
e712f38bb1
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@233 2a923420-c742-0410-a762-8d5b09965624
10 lines
174 B
Plaintext
10 lines
174 B
Plaintext
|
|
proc eval_plugins {hook} {
|
|
foreach plugin [glob /mod/var/mongoose/plugin/*] {
|
|
if {[file isfile "$plugin/$hook.hook"]} {
|
|
uplevel source "$plugin/$hook.hook"
|
|
}
|
|
}
|
|
}
|
|
|