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