]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-list_point_accounts.php
Added more config wrappers
[mailer.git] / inc / modules / admin / what-list_point_accounts.php
index a605653754b0cb0b4ab022ec051bcaf9bb937e59..ab31e813f048be28447549325f21e97b70c0d867 100644 (file)
@@ -67,22 +67,22 @@ if (isFormSent('add')) {
        }
 } elseif (isFormSent('edit')) {
        // Show only custom entries for editing
-       showEntriesByXmlCallback('admin_edit_show_point_accounts');
+       doGenericXmlTemplateCallback('admin_edit_show_point_accounts');
 
        // Do not show the list of URLs after this template
        $show = FALSE;
 } elseif (isFormSent('do_edit')) {
        // Change data of only custom entries
-       showEntriesByXmlCallback('admin_edit_do_point_accounts');
+       doGenericXmlTemplateCallback('admin_edit_do_point_accounts');
 } elseif ((isFormSent('delete')) && (ifPointsAccountTypeMatchesPost('CUSTOM'))) {
        // Show only custom entries for deleting
-       showEntriesByXmlCallback('admin_delete_show_point_accounts');
+       doGenericXmlTemplateCallback('admin_delete_show_point_accounts');
 
        // Do not show the list of URLs after this template
        $show = FALSE;
 } elseif ((isFormSent('do_delete')) && (ifPointsAccountTypeMatchesPost('CUSTOM'))) {
        // Remove only custom entries
-       showEntriesByXmlCallback('admin_delete_do_point_accounts');
+       doGenericXmlTemplateCallback('admin_delete_do_point_accounts');
 }
 
 // Show entries?
@@ -92,7 +92,7 @@ if ($show === FALSE) {
 } // END - if
 
 // List all campaigns
-showEntriesByXmlCallback('admin_list_point_accounts');
+doGenericXmlTemplateCallback('admin_list_point_accounts');
 
 // Display form for adding a forced-ad
 loadTemplate('admin_add_point_accounts');