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