function hook_alter_student_profile_items
Search API
7.x user.api.php | hook_alter_student_profile_items($bool_mini, &$extra_profile_items, $bool_balance = TRUE, $alt_section = "") |
6.x user.api.php | hook_alter_student_profile_items($bool_mini, &$extra_profile_items, $bool_balance = TRUE, $alt_section = "") |
Allows other modules to alter the "profile items".
See also
user_alter_student_profile_items for a real-life demo of this hook.
1 function implements hook_alter_student_profile_items()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- user_alter_student_profile_items in modules/
user/ user.module - Implements hook_alter_student_profile_items
File
- modules/
user/ user.api.php, line 125
Code
function hook_alter_student_profile_items($bool_mini, &$extra_profile_items, $bool_balance = TRUE, $alt_section = "") {
// Code goes here. See user_alter_student_profile_items for a real-life demo of this hook.
}