profile_categories
- Versions
- 4.6 – 6
profile_categories()
Code
modules/profile.module, line 732
<?php
function profile_categories() {
$result = db_query("SELECT DISTINCT(category) FROM {profile_fields}");
while ($category = db_fetch_object($result)) {
$data[] = array('name' => $category->category, 'title' => $category->category, 'weight' => 3);
}
return $data;
}
?>Login or register to post comments 