diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2011-01-04 15:56:16 -0700 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2011-01-04 15:56:16 -0700 |
commit | dbff45cc91ac44f18ef02b8abdd220a2864f050f (patch) | |
tree | 8e6b65c2daed952b87bbc2c8f3898abb1e475f3a | |
parent | 798c876ba1cb5b83f6cd6616b90321e9e527b864 (diff) |
Add an info_block_metadata event to allow other modules to add to the item info block.
-rw-r--r-- | modules/info/helpers/info_block.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/info/helpers/info_block.php b/modules/info/helpers/info_block.php index f061f7eb..e3ae1d71 100644 --- a/modules/info/helpers/info_block.php +++ b/modules/info/helpers/info_block.php @@ -68,6 +68,8 @@ class info_block_Core { } } $block->content->metadata = $info; + + module::event("info_block_metadata", $block, $theme->item->id); } break; } |