diff options
Diffstat (limited to 'modules/user/user_profile.tpl.php')
-rw-r--r-- | modules/user/user_profile.tpl.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/modules/user/user_profile.tpl.php b/modules/user/user_profile.tpl.php new file mode 100644 index 000000000..2acd78a94 --- /dev/null +++ b/modules/user/user_profile.tpl.php @@ -0,0 +1,25 @@ +<?php + +/* + * In order to customize user profiles, replace the HTML below with your own + * wrapper and then sprinkle drupal_render($account->content[foo]) calls + * where you need each piece of data to appear. Replace the 'foo' in the + * example above with the element that is desired such as + * drupal_render($account->content['summary']['member_for']). + */ + +// Uncomment the line below to see what data is available in this template. +# print '<pre>'. check_plain(print_r($account->content, 1)) .'</pre>'; + + ?> + +<div class="profile"> + +<?php + +// The following line should always be the last PHP in this file. Do not remove. +print drupal_render($account->content); + +?> + +</div>
\ No newline at end of file |