Use objectManager to submit and process applications. Remove now unused appsubmit.php

admin/adminAppQueue.php
This commit is contained in:
Alexander Nicolaysen Sørnes
2007-04-24 23:48:14 +00:00
committed by WineHQ
parent 3a3aa89f4e
commit b11cce6711
11 changed files with 402 additions and 835 deletions

View File

@@ -10,7 +10,7 @@ function global_admin_menu() {
$g = new htmlmenu("Global Admin");
$g->add("View App Queue (".application::objectGetEntriesCount(true, false).")",
BASE."objectManager.php?sClass=application&bIsQueue=true&sTitle=".
BASE."objectManager.php?sClass=application_queue&bIsQueue=true&sTitle=".
"Application%20Queue");
$g->add("View Version Queue (".version::objectGetEntriesCount(true, false).")",
BASE."objectManager.php?sClass=version_queue&bIsQueue=true&sTitle=".
@@ -44,8 +44,8 @@ function global_admin_menu() {
$g->add("View Rejected Applications (".application::objectGetEntriesCount(true,
true).")",
BASE."objectManager.php?sClass=application&bIsQueue=true&bIsRejected=true&".
"sTitle=Rejected%20Applications");
BASE."objectManager.php?sClass=application_queue&bIsQueue=true&bIsRejected=".
"true&sTitle=Rejected%20Applications");
$g->add("View Rejected Versions (".version::objectGetEntriesCount(true, true).")",
BASE."objectManager.php?sClass=version_queue&bIsQueue=true&".
"bIsRejected=true&sTitle=Rejected%20Versions");