0) { // List all $SW = 2; $OUT = ''; while ($content = SQL_FETCHARRAY($result)) { // Add/translate entries $content['sw'] = $SW; // Load row template $OUT .= loadTemplate('admin_list_networks_row', true, $content); // Switch color $SW = 3 - $SW; } // END - while // Load main template loadTemplate('admin_list_networks', false, $OUT); } else { // Display a message that there are sponsor networks supported, yet loadTemplate('admin_settings_saved', false, getMessage('ADMIN_NETWORK_NONE_SUPPORTED')); } // Free result SQL_FREERESULT($result); // Add form for adding new entry loadTemplate('admin_add_network'); // [EOF] ?>