X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_grade_data.php;h=e7065423e798027e4c67db845b7903d9fb413d70;hb=4f7df133f736da124e6f7bd02008b9093f736451;hp=6de20d18d96acddcd64c554ba82350be4df8dcf9;hpb=ffc8edeb9f05685c42ffa01e030e66436bd1d3c1;p=mailer.git diff --git a/inc/modules/admin/what-list_grade_data.php b/inc/modules/admin/what-list_grade_data.php index 6de20d18d9..e7065423e7 100644 --- a/inc/modules/admin/what-list_grade_data.php +++ b/inc/modules/admin/what-list_grade_data.php @@ -8,7 +8,7 @@ * -------------------------------------------------------------------- * * Short description : List all grades * * -------------------------------------------------------------------- * - * Kurzbeschreibung : Listet alle Abstufungen auf * + * Kurzbeschreibung : Listet alle Accountstufen auf * * -------------------------------------------------------------------- * * $Revision:: $ * * $Date:: $ * @@ -58,28 +58,28 @@ if ((countRequestPost() > 0) && (!isFormSent('add_grade')) && (!ifPostContainsSe // Edit or delete button hit? if (isFormSent('add_grade')) { // Add grade - showEntriesByXmlCallback('admin_add_do_grade_data'); + doGenericXmlTemplateCallback('admin_add_do_grade_data'); // Do not show the list of URLs after this template $show = FALSE; } elseif (isFormSent('edit')) { // Show entries for editing - showEntriesByXmlCallback('admin_edit_show_grade_data'); + doGenericXmlTemplateCallback('admin_edit_show_grade_data'); // Do not show the list of URLs after this template $show = FALSE; } elseif (isFormSent('do_edit')) { // Change data of entries - showEntriesByXmlCallback('admin_edit_do_grade_data'); + doGenericXmlTemplateCallback('admin_edit_do_grade_data'); } elseif (isFormSent('delete')) { // Show entries for deletion - showEntriesByXmlCallback('admin_delete_show_grade_data'); + doGenericXmlTemplateCallback('admin_delete_show_grade_data'); // Do not show the list of URLs after this template $show = FALSE; } elseif (isFormSent('do_delete')) { // Remove entries from database - showEntriesByXmlCallback('admin_delete_do_grade_data'); + doGenericXmlTemplateCallback('admin_delete_do_grade_data'); } // Show entries? @@ -89,7 +89,7 @@ if ($show === FALSE) { } // END - if // List all URLs -showEntriesByXmlCallback('admin_list_grade_data'); +doGenericXmlTemplateCallback('admin_list_grade_data'); // Add form for adding new entry loadTemplate('admin_add_grade_data');