function list_rows($arr, $row)
 {
     global $tpl;
     global $display;
     $col = 0;
     if (!$this->disable_mass_delete) {
         $display->rows[$row][$col] = '<input type="checkbox" name="delete[]" value="' . $arr['id'] . '">';
         $display->width[$row][$col] = '1%';
         $col++;
     }
     foreach ($arr as $field => $value) {
         if (isset($this->allow_single_update) && in_array($field, $this->allow_single_update)) {
             $link = $this->link_base . '&amp;command=update_field&amp;data[id]=' . $arr['id'] . '&amp;data[field]=' . $field;
             if ($this->limit_start) {
                 $link .= '&amp;data[limit_start]=' . $this->limit_start;
             }
             if ($this->orderby) {
                 $link .= '&amp;data[orderby]=' . $this->orderby;
             }
             if ($this->sort) {
                 $link .= '&amp;data[sort]=' . $this->sort;
             }
             $display->links[$row][$col] = $link;
         } elseif (method_exists($this, 'form')) {
             $link = $this->file . '?class=' . get_class($this) . '&amp;command=edit&amp;data[id]=' . $arr['id'];
         } else {
             $link = '';
         }
         if ($field == 'name' && CONF_SHOW_SUMMARY_ON_LIST) {
             $ingred = new ingredient($arr['id']);
             $value .= '<span class="admin_ingreds_list">';
             $dishes = $ingred->find_connected_dishes();
             if (!empty($dishes['included']) && is_array($dishes['included'])) {
                 $value .= '<br/>' . ucphr('INCLUDED') . ': ';
                 foreach ($dishes['included'] as $key2 => $value2) {
                     $value .= ucfirst($value2) . ", ";
                 }
                 $value = substr($value, 0, -2);
                 $value .= '';
             }
             if (!empty($dishes['available']) && is_array($dishes['available'])) {
                 $value .= '<br/>' . ucphr('AVAILABLE') . ': ';
                 foreach ($dishes['available'] as $key2 => $value2) {
                     $value .= ucfirst($value2) . ", ";
                 }
                 $value = substr($value, 0, -2);
                 $value .= '';
             }
             $value .= '</span>';
         } elseif ($field == 'unit_type') {
             $value = get_user_unit($arr['unit_type']);
         } elseif ($field == 'quantity') {
             $unit = get_user_unit($arr['unit_type']);
             $default_unit = get_default_unit($arr['unit_type']);
             $value = convert_units($value . ' ' . $default_unit, $unit);
         }
         $display->rows[$row][$col] = $value;
         if ($link && $field == 'name') {
             $display->links[$row][$col] = $link;
         }
         if ($link) {
             $display->clicks[$row][$col] = 'redir(\'' . $link . '\');';
         }
         $col++;
     }
 }