0) && (!ifPostContainsSelections('forced_costs_id'))) { // Not found so output message displayMessage('{--ADMIN_FORCED_COSTS_NO_SELECTIONS--}'); // Abort here return; } // END - if // Edit or delete button hit? if (isFormSent('add')) { // Add new forced ad doGenericXmlTemplateCallback('admin_add_do_forced_costs'); } elseif (isFormSent('edit')) { // Show entries for editing doGenericXmlTemplateCallback('admin_edit_show_forced_costs'); // Do not show the list of URLs after this template $show = FALSE; } elseif (isFormSent('do_edit')) { // Change data of entries doGenericXmlTemplateCallback('admin_edit_do_forced_costs'); } elseif (isFormSent('delete')) { // Show entries for deletion doGenericXmlTemplateCallback('admin_delete_show_forced_costs'); // Do not show the list of URLs after this template $show = FALSE; } elseif (isFormSent('do_delete')) { // Remove entries from database doGenericXmlTemplateCallback('admin_delete_do_forced_costs'); } // Show entries? if ($show === FALSE) { // No, a form has already been show return FALSE; } // END - if // List all URLs doGenericXmlTemplateCallback('admin_list_forced_costs'); // Display form for adding a forced-ad loadTemplate('admin_add_forced_costs'); // [EOF] ?>