| Versionen | |
|---|---|
| drupal6 – drupal7 | profile_category_access($account, $category) |
Menu item access callback - check if a user has access to a profile category.
modules/
<?php
function profile_category_access($account, $category) {
if (user_access('administer users') && $account->uid > 0) {
return TRUE;
}
else {
return user_edit_access($account) && db_result(db_query("SELECT COUNT(*) FROM {profile_fields} WHERE category = '%s' AND visibility <> %d", $category, PROFILE_HIDDEN));
}
}
?>
Kommentare
Kommentar hinzufügen