{%pipe,translateGender=' . $content['gender'] . '%} ' . $content['surname'] . ' ' . $content['family'] . ''; // Ok, list categories of this user $result_cats = SQL_QUERY("SELECT `id`,`cat` FROM `{?_MYSQL_PREFIX?}_cats` ORDER BY `sort` ASC", __FILE__, __LINE__); if (!SQL_HASZERONUMS($result_cats)) { // List categories $count = 1; $OUT = ''; while ($row = SQL_FETCHARRAY($result_cats)) { // Merge both arrays $content = merge_array($content, $row); // Check user's selection // @TODO Rewrite this to countSum.....() function $result_user = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_cats` WHERE `userid`=%s AND `cat_id`=%s LIMIT 1", array(bigintval(getRequestElement('userid')), bigintval($content['id'])), __FILE__, __LINE__); // Set selection $selection = '{--NO--}'; if (SQL_NUMROWS($result_user) == 1) { $selection = '{--YES--}'; } // END - if // Add more elements $content['count'] = $count; $content['sel'] = $selection; // Load row template and count up $OUT .= loadTemplate('admin_list_user_cats_row', true, $content); $count++; } // END - while // Free memory SQL_FREERESULT($result_cats); // Remember all rows in the array $content['rows'] = $OUT; // Load main template loadTemplate('admin_list_user_cats', false, $content); } else { // No categories selected! :-( loadTemplate('admin_list_user_cats_404', false, $content); } } else { // User not found displayMessage('{%message,ADMIN_MEMBER_404=' . $content['userid'] . '%}'); } } else { // Output selection form with all confirmed user accounts listed addMemberSelectionBox(); } // [EOF] ?>