Fix naming of OutputEditor() to be outputEditor()
This commit is contained in:
committed by
WineHQ
parent
17de2854e0
commit
917851fceb
@@ -499,7 +499,7 @@ class Application {
|
||||
|
||||
|
||||
/* output a html table and this applications values to the fields for editing */
|
||||
function OutputEditor($sVendorName)
|
||||
function outputEditor($sVendorName)
|
||||
{
|
||||
HtmlAreaLoaderScript(array("app_editor"));
|
||||
|
||||
@@ -575,8 +575,8 @@ class Application {
|
||||
return $errors;
|
||||
}
|
||||
|
||||
/* retrieves values from $aValues that were output by OutputEditor() */
|
||||
/* $aValues can be $_REQUEST or any array with the values from OutputEditor() */
|
||||
/* retrieves values from $aValues that were output by outputEditor() */
|
||||
/* $aValues can be $_REQUEST or any array with the values from outputEditor() */
|
||||
function GetOutputEditorValues($aValues)
|
||||
{
|
||||
$this->iAppId = $aValues['iAppId'];
|
||||
|
||||
@@ -360,7 +360,7 @@ class distribution{
|
||||
mail_appdb($sEmail, $sSubject ,$sMsg);
|
||||
}
|
||||
|
||||
function OutputEditor()
|
||||
function outputEditor()
|
||||
{
|
||||
echo html_frame_start("Distribution Form", "90%", "", 0);
|
||||
echo "<table width='100%' border=0 cellpadding=2 cellspacing=0>\n";
|
||||
@@ -378,8 +378,8 @@ class distribution{
|
||||
echo html_frame_end();
|
||||
}
|
||||
|
||||
/* retrieves values from $_REQUEST that were output by OutputEditor() */
|
||||
/* $aValues can be $_REQUEST or any array with the values from OutputEditor() */
|
||||
/* retrieves values from $_REQUEST that were output by outputEditor() */
|
||||
/* $aValues can be $_REQUEST or any array with the values from outputEditor() */
|
||||
function GetOutputEditorValues($aValues)
|
||||
{
|
||||
$this->iDistributionId = $aValues['iDistributionId'];
|
||||
|
||||
@@ -57,7 +57,7 @@ class downloadurl
|
||||
}
|
||||
|
||||
/* Output an editor for Download URL fields */
|
||||
function OutputEditor($oVersion, $sFormAction)
|
||||
function outputEditor($oVersion, $sFormAction)
|
||||
{
|
||||
/* Check for correct permissions */
|
||||
if(!downloadurl::canEdit($oVersion->iVersionId))
|
||||
|
||||
@@ -401,7 +401,7 @@ class maintainer
|
||||
echo "</td></tr></table></div>\n\n";
|
||||
}
|
||||
|
||||
function OutputEditor()
|
||||
function outputEditor()
|
||||
{
|
||||
//view application details
|
||||
echo html_frame_start("New Maintainer Form",600,"",0);
|
||||
|
||||
@@ -227,7 +227,7 @@ class Note {
|
||||
}
|
||||
|
||||
|
||||
function OutputEditor()
|
||||
function outputEditor()
|
||||
{
|
||||
HtmlAreaLoaderScript(array("editor"));
|
||||
|
||||
@@ -251,8 +251,8 @@ class Note {
|
||||
echo html_frame_end();
|
||||
}
|
||||
|
||||
/* retrieves values from $aValue that were output by OutputEditor() */
|
||||
/* $aValues can be $_REQUEST or any array with the values from OutputEditor() */
|
||||
/* retrieves values from $aValue that were output by outputEditor() */
|
||||
/* $aValues can be $_REQUEST or any array with the values from outputEditor() */
|
||||
function GetOutputEditorValues($aValues)
|
||||
{
|
||||
$this->iVersionId = $aValues['iVersionId'];
|
||||
|
||||
@@ -491,7 +491,7 @@ class testData{
|
||||
}
|
||||
|
||||
// show the fields for editing
|
||||
function OutputEditor($sDistribution="", $bNewDist=false)
|
||||
function outputEditor($sDistribution="", $bNewDist=false)
|
||||
{
|
||||
HtmlAreaLoaderScript(array("Test1", "Test2", "Test3"));
|
||||
|
||||
@@ -553,7 +553,7 @@ class testData{
|
||||
echo html_frame_end();
|
||||
}
|
||||
|
||||
/* $aValues can be $aValues or any array with the values from OutputEditor() */
|
||||
/* $aValues can be $aValues or any array with the values from outputEditor() */
|
||||
function CheckOutputEditorInput($aValues, $sDistribution="")
|
||||
{
|
||||
$errors = "";
|
||||
@@ -602,8 +602,8 @@ class testData{
|
||||
|
||||
}
|
||||
|
||||
/* retrieves values from $aValues that were output by OutputEditor() */
|
||||
/* $aValues can be $_REQUEST or any array with the values from OutputEditor() */
|
||||
/* retrieves values from $aValues that were output by outputEditor() */
|
||||
/* $aValues can be $_REQUEST or any array with the values from outputEditor() */
|
||||
function GetOutputEditorValues($aValues)
|
||||
{
|
||||
$this->iTestingId = $aValues['iTestingId'];
|
||||
|
||||
@@ -118,7 +118,7 @@ class Vendor {
|
||||
}
|
||||
}
|
||||
|
||||
function OutputEditor()
|
||||
function outputEditor()
|
||||
{
|
||||
echo html_frame_start("Vendor Form", "90%", "", 0);
|
||||
echo "<table width='100%' border=0 cellpadding=2 cellspacing=0>\n";
|
||||
|
||||
@@ -531,7 +531,7 @@ class Version {
|
||||
/* if $editParentApplication is true that means we need to display fields */
|
||||
/* to let the user change the parent application of this version */
|
||||
/* otherwise, if $editParentAppliation is false, we leave them out */
|
||||
function OutputEditor($editParentApplication, $editRatingAndRelease)
|
||||
function outputEditor($editParentApplication, $editRatingAndRelease)
|
||||
{
|
||||
HtmlAreaLoaderScript(array("version_editor"));
|
||||
echo html_frame_start("Version Form", "90%", "", 0);
|
||||
|
||||
Reference in New Issue
Block a user