Skip to content

Commit

Permalink
Change to a table per category.
Browse files Browse the repository at this point in the history
  • Loading branch information
ikawhero committed Jan 13, 2007
1 parent b1ea439 commit a756889
Showing 1 changed file with 10 additions and 16 deletions.
26 changes: 10 additions & 16 deletions user/profile/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -231,35 +231,29 @@
if ( ( (count_records_select('user_info_category', "name<>'$strdefaultcategory'") > 0) or
(count_records_select('user_info_field', '1') > 0) ) and
( $categories = get_records_select('user_info_category', '1', 'sortorder ASC')) ) {
unset ($table);
$table->head = array(get_string('profilecategory','admin'),get_string('profilefield','admin'),get_string('edit'));
$table->align = array('left','left','right');
$table->width = '95%';
$table->data = array();

$firstflag = true;

foreach ($categories as $category) {

/// Add a divider between the categories
if (!$firstflag) {
$table->data[] = 'hr';
} else {
$firstflag = false;
}
unset ($table);
$table->head = array(get_string('profilefield','admin'),get_string('edit'));
$table->align = array('left','right');
$table->width = '95%';
$table->class = 'generaltable profilefield';
$table->data = array();

$table->data[] = array($category->name, '', profile_category_icons($category));

if ($fields = get_records_select('user_info_field', "categoryid=$category->id", 'sortorder ASC')) {
foreach ($fields as $field) {

$table->data[] = array('', $field->name, profile_field_icons($field));
$table->data[] = array($field->name, profile_field_icons($field));

} /// End of $fields foreach
} /// End of $fields if
} /// End of $categories foreach

print_heading($category->name.' '.profile_category_icons($category));
print_table($table);

} /// End of $categories foreach

} else {

Expand Down

0 comments on commit a756889

Please sign in to comment.