0) && ((!isPostRequestElementSet('forced_costs_id')) || (!is_array(postRequestElement('forced_costs_id'))) || (count(postRequestElement('forced_costs_id')) == 0))) { // 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 showEntriesByXmlCallback('admin_add_do_forced_costs'); } elseif (isFormSent('edit')) { // Show entries for editing showEntriesByXmlCallback('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 showEntriesByXmlCallback('admin_edit_do_forced_costs'); } elseif (isFormSent('delete')) { // Show entries for deletion showEntriesByXmlCallback('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 showEntriesByXmlCallback('admin_delete_do_forced_costs'); } // Show entries? if ($show === false) { // No, a form has already been show return false; } // END - if // List all URLs showEntriesByXmlCallback('admin_list_forced_costs'); // Display form for adding a forced-ad loadTemplate('admin_add_forced_costs'); // [EOF] ?>