0) && (!ifPostContainsSelections('id'))) { // Not found so output message displayMessage('{--ADMIN_USER_SUBID_NO_SELECTIONS--}'); // Abort here return; } // END - if // Edit or delete button hit? if (isFormSent('delete')) { // Show entries for deletion showEntriesByXmlCallback('admin_delete_show_user_subid'); // Do not show the list of URLs after this template $show = false; } elseif (isFormSent('do_delete')) { // Remove entries from database showEntriesByXmlCallback('admin_delete_do_user_subid'); } // Show entries? if ($show === false) { // No, a form has already been show return false; } // END - if // Is a user id sent? if (isGetRequestElementSet('userid')) { // List all sub ids showEntriesByXmlCallback('admin_list_user_subid', array( 'userid' => bigintval(getRequestElement('userid')) )); } else { // Output selection form with all confirmed user accounts listed addMemberSelectionBox(); } // [EOF] ?>