0) && (!ifPostContainsSelections('???_id'))) { // Not found so output message displayMessage('{--ADMIN_|||_NO_SELECTIONS--}'); // Abort here return; } // END - if // Edit or delete button hit? if (isFormSent('edit')) { // Show entries for editing showEntriesByXmlCallback('admin_edit_show_!!!s'); // Do not show the list of URLs after this template $show = false; } elseif (isFormSent('do_edit')) { // Change data of entries showEntriesByXmlCallback('admin_edit_do_!!!s'); } elseif (isFormSent('delete')) { // Show entries for deletion showEntriesByXmlCallback('admin_delete_show_!!!s'); // Do not show the list of URLs after this template $show = false; } elseif (isFormSent('do_delete')) { // Remove entries from database showEntriesByXmlCallback('admin_delete_do_!!!s'); } elseif (isFormSent('lock')) { // Un-/lock selected URLs. This does not work for pending URLs showEntriesByXmlCallback('admin_lock_show_!!!s'); // Do not show the list of URLs after this template $show = false; } elseif (isFormSent('do_lock')) { // Un-/lock selected URLs. This does not work for pending URLs showEntriesByXmlCallback('admin_lock_do_!!!s'); } elseif (isFormSent('undelete')) { // Undelete selected URLs. This does only work for deleted URLs... ;-) showEntriesByXmlCallback('admin_undelete_show_!!!s'); // Do not show the list of URLs after this template $show = false; } elseif (isFormSent('do_undelete')) { // Undelete selected URLs. This does only work for deleted URLs... ;-) showEntriesByXmlCallback('admin_undelete_do_!!!s'); } // Show entries? if ($show === false) { // No, a form has already been show return false; } // END - if // List all URLs showEntriesByXmlCallback('admin_list_!!!s'); // [EOF] ?>