| 6 profile.module | template_preprocess_profile_wrapper(&$variables) |
| 7 profile.module | template_preprocess_profile_wrapper(&$variables) |
Process variables for profile-wrapper.tpl.php.
The $variables array contains the following arguments:
- $content
See also
File
- modules/
profile/ profile.module, line 590 - Support for configurable user profiles.
Code
function template_preprocess_profile_wrapper(&$variables) {
$variables['current_field'] = '';
if ($field = arg(1)) {
$variables['current_field'] = $field;
$variables['theme_hook_suggestions'][] = 'profile_wrapper__' . $field;
}
}
Login or register to post comments