mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-27 23:56:25 +00:00
Directory Structure [step 1]: moving files
working on #672 NOTE: This commit can't be compiled!!
This commit is contained in:
16
deps/hw-core/bash-lib-event/src/hooks.sh
vendored
Normal file
16
deps/hw-core/bash-lib-event/src/hooks.sh
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
# par 1: hook_name
|
||||
function hwc_event_run_hooks() {
|
||||
hook_name="HOOKS_MAP_$1"
|
||||
read -r -a SRCS <<< ${!hook_name}
|
||||
echo "Running hooks: $hook_name"
|
||||
for i in "${SRCS[@]}"
|
||||
do
|
||||
$i # run registered hook
|
||||
done
|
||||
}
|
||||
|
||||
function hwc_event_register_hooks() {
|
||||
hook_name="HOOKS_MAP_$1"
|
||||
hooks=${@:2}
|
||||
declare -g "$hook_name+=$hooks "
|
||||
}
|
||||
Reference in New Issue
Block a user