diff options
Diffstat (limited to 'modules/profile')
-rw-r--r-- | modules/profile/profile.module | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/profile/profile.module b/modules/profile/profile.module index c486dda05..fd2a8c6ac 100644 --- a/modules/profile/profile.module +++ b/modules/profile/profile.module @@ -52,6 +52,19 @@ function profile_help($section) { } /** + * Implementation of hook_theme() + */ +function profile_theme() { + return array( + 'profile_block' => array( + 'arguments' => array('account' => NULL, 'fields' => array()), + ), + 'profile_listing' => array( + 'arguments' => array('account' => NULL, 'fields' => array()), + ), ); +} + +/** * Implementation of hook_menu(). */ function profile_menu() { |