Full ELMS Learning Network documentation
user-profile.tpl.php
Error message
User warning: The following module is missing from the file system: theme/theme. For information about how to fix this, see the documentation page. in _drupal_trigger_error_with_delayed_logging() (line 1156 of /var/www/html/elmsln_community/api.elmsln.org/includes/bootstrap.inc).- cis7 modules/user/user-profile.tpl.php
- cis7 sites/all/themes/ulmus/adaptivetheme/at_core/templates/user-profile.tpl.php
- cis7 sites/all/themes/ulmus/aurora/templates/user/user-profile.tpl.php
- cle7 modules/user/user-profile.tpl.php
- cle7 sites/all/themes/ulmus/adaptivetheme/at_core/templates/user-profile.tpl.php
- cle7 sites/all/themes/ulmus/aurora/templates/user/user-profile.tpl.php
- ecd7 modules/user/user-profile.tpl.php
- ecd7 sites/all/themes/ulmus/aurora/templates/user/user-profile.tpl.php
- ecd7 sites/all/themes/ulmus/adaptivetheme/at_core/templates/user-profile.tpl.php
- elmsmedia7 modules/user/user-profile.tpl.php
- elmsmedia7 sites/all/themes/ulmus/adaptivetheme/at_core/templates/user-profile.tpl.php
- elmsmedia7 sites/all/themes/ulmus/aurora/templates/user/user-profile.tpl.php
- harmony7 sites/all/themes/ulmus/aurora/templates/user/user-profile.tpl.php
- harmony7 sites/all/themes/ulmus/adaptivetheme/at_core/templates/user-profile.tpl.php
- harmony7 modules/user/user-profile.tpl.php
- icor7 modules/user/user-profile.tpl.php
- icor7 sites/all/themes/ulmus/aurora/templates/user/user-profile.tpl.php
- icor7 sites/all/themes/ulmus/adaptivetheme/at_core/templates/user-profile.tpl.php
- meedjum_blog7 sites/all/themes/ulmus/adaptivetheme/at_core/templates/user-profile.tpl.php
- meedjum_blog7 sites/all/themes/ulmus/aurora/templates/user/user-profile.tpl.php
- meedjum_blog7 modules/user/user-profile.tpl.php
- mooc7 sites/all/themes/ulmus/adaptivetheme/at_core/templates/user-profile.tpl.php
- mooc7 sites/all/themes/ulmus/aurora/templates/user/user-profile.tpl.php
- mooc7 modules/user/user-profile.tpl.php
Default theme implementation to present all user profile data.
This template is used when viewing a registered member's profile page, e.g., example.com/user/123. 123 being the users ID.
Use render($user_profile) to print all profile items, or print a subset such as render($user_profile['user_picture']). Always call render($user_profile) at the end in order to print all remaining items. If the item is a category, it will contain all its profile items. By default, $user_profile['summary'] is provided, which contains data on the user's history. Other data can be included by modules. $user_profile['user_picture'] is available for showing the account picture.
Available variables:
- $user_profile: An array of profile items. Use render() to print them.
- Field variables: for each field instance attached to the user a corresponding variable is defined; e.g., $account->field_example has a variable $field_example defined. When needing to access a field's raw values, developers/themers are strongly encouraged to use these variables. Otherwise they will have to explicitly specify the desired field language, e.g. $account->field_example['en'], thus overriding any language negotiation rule that was previously applied.
Where the html is handled for the group. Where the html is handled for each item in the group.
See also
template_preprocess_user_profile()
Note: this list is generated by looking for the string for this theme hook, so it may include some references that are not actually using this theme hook.
- ctools_user_profile_content_type_render in sites/
all/ modules/ ulmus/ ctools/ plugins/ content_types/ user_context/ user_profile.inc - Render the user profile content type.
- ds_entity_variables in sites/
all/ modules/ ulmus/ ds/ ds.module - Add variables to an entity.
- field_group_build_entity_groups in sites/
all/ modules/ ulmus/ field_group/ field_group.module - Preprocess/ Pre-render callback.
- field_group_fields_nest in sites/
all/ modules/ ulmus/ field_group/ field_group.module - Recursive function to nest fields in the field groups.
- field_group_theme_registry_alter in sites/
all/ modules/ ulmus/ field_group/ field_group.module - Implements hook_theme_registry_alter().
File
modules/user/user-profile.tpl.php- <?php
-
- /**
- * @file
- * Default theme implementation to present all user profile data.
- *
- * This template is used when viewing a registered member's profile page,
- * e.g., example.com/user/123. 123 being the users ID.
- *
- * Use render($user_profile) to print all profile items, or print a subset
- * such as render($user_profile['user_picture']). Always call
- * render($user_profile) at the end in order to print all remaining items. If
- * the item is a category, it will contain all its profile items. By default,
- * $user_profile['summary'] is provided, which contains data on the user's
- * history. Other data can be included by modules. $user_profile['user_picture']
- * is available for showing the account picture.
- *
- * Available variables:
- * - $user_profile: An array of profile items. Use render() to print them.
- * - Field variables: for each field instance attached to the user a
- * corresponding variable is defined; e.g., $account->field_example has a
- * variable $field_example defined. When needing to access a field's raw
- * values, developers/themers are strongly encouraged to use these
- * variables. Otherwise they will have to explicitly specify the desired
- * field language, e.g. $account->field_example['en'], thus overriding any
- * language negotiation rule that was previously applied.
- *
- * @see user-profile-category.tpl.php
- * Where the html is handled for the group.
- * @see user-profile-item.tpl.php
- * Where the html is handled for each item in the group.
- * @see template_preprocess_user_profile()
- *
- * @ingroup themeable
- */
- ?>
- <div class="profile"<?php print $attributes; ?>>
- <?php print render($user_profile); ?>
- </div>
-