Changed default startup_up app to be in user preferences. Default 'Sales'.
[fa-stable.git] / includes / ui / ui_lists.inc
index 320e13cfad2230d3b11fd212c7565dcb1ea8d1c8..ad7a2cb542d2c5024ecc31b33af48d2caaef5710 100644 (file)
@@ -2134,5 +2134,18 @@ function security_roles_list_row($label, $name, $selected_id=null, $new_item=fal
        return $str;
 }
 
+function tab_list_row($label, $name, $selected_id=null)
+{
+       global $tabs;
+       echo "<tr>\n";
+       echo "<td>$label</td><td>\n";
+
+       $items = array();
+
+       array_selector($name, $selected_id, $tabs);
+
+       echo "</td></tr>\n";
+}
+
 
 ?>
\ No newline at end of file