CODE STYLE

files modified:   inputdocs/inputdocs_Delete.php
                  inputdocs/inputdocs_Edit.php
                  inputdocs/inputdocs_List.php
                  inputdocs/inputdocs_Save.php
This commit is contained in:
Ralph Asendeteufrer
2012-10-18 13:33:43 -04:00
parent 66725ed430
commit f1b60265d3
4 changed files with 227 additions and 233 deletions

View File

@@ -20,7 +20,6 @@
* *
* For more information, contact Colosa Inc, 2566 Le Jeune Rd., * For more information, contact Colosa Inc, 2566 Le Jeune Rd.,
* Coral Gables, FL, 33134, USA, or email info@colosa.com. * Coral Gables, FL, 33134, USA, or email info@colosa.com.
*
*/ */
try { try {
global $RBAC; global $RBAC;
@@ -28,12 +27,12 @@ try {
case - 2: case - 2:
G::SendTemporalMessage( 'ID_USER_HAVENT_RIGHTS_SYSTEM', 'error', 'labels' ); G::SendTemporalMessage( 'ID_USER_HAVENT_RIGHTS_SYSTEM', 'error', 'labels' );
G::header( 'location: ../login/login' ); G::header( 'location: ../login/login' );
die; die();
break; break;
case - 1: case - 1:
G::SendTemporalMessage( 'ID_USER_HAVENT_RIGHTS_PAGE', 'error', 'labels' ); G::SendTemporalMessage( 'ID_USER_HAVENT_RIGHTS_PAGE', 'error', 'labels' );
G::header( 'location: ../login/login' ); G::header( 'location: ../login/login' );
die; die();
break; break;
} }
@@ -44,13 +43,13 @@ try {
require_once 'classes/model/ObjectPermission.php'; require_once 'classes/model/ObjectPermission.php';
G::LoadClass( 'processMap' ); G::LoadClass( 'processMap' );
if(isset($_POST['function'])) if (isset( $_POST['function'] )) {
$sfunction = $_POST['function']; $sfunction = $_POST['function'];
else } else {
$sfunction = $_POST['functions']; $sfunction = $_POST['functions'];
}
switch ($sfunction) { switch ($sfunction) {
case 'getRelationInfDoc': case 'getRelationInfDoc':
try { try {
$oStepSupervisor = new StepSupervisor(); $oStepSupervisor = new StepSupervisor();
@@ -61,8 +60,7 @@ try {
} }
$result->success = true; $result->success = true;
$result->msg = $result->passed ? '' : G::LoadTranslation( 'ID_INPUTDOCUMENT_TASK_RELATION_EXISTS' ); $result->msg = $result->passed ? '' : G::LoadTranslation( 'ID_INPUTDOCUMENT_TASK_RELATION_EXISTS' );
} } catch (Exception $e) {
catch (Exception $e) {
$result->success = false; $result->success = false;
$result->passed = false; $result->passed = false;
$result->msg = $e->getMessage(); $result->msg = $e->getMessage();
@@ -77,8 +75,9 @@ try {
$oPermission = new ObjectPermission(); $oPermission = new ObjectPermission();
$fields3 = $oPermission->loadInfo( $_POST['INP_DOC_UID'] ); $fields3 = $oPermission->loadInfo( $_POST['INP_DOC_UID'] );
if(is_array($fields3)) if (is_array( $fields3 )) {
$oPermission->remove( $fields3['OP_UID'] ); $oPermission->remove( $fields3['OP_UID'] );
}
$oInputDocument = new InputDocument(); $oInputDocument = new InputDocument();
$fields = $oInputDocument->load( $_POST['INP_DOC_UID'] ); $fields = $oInputDocument->load( $_POST['INP_DOC_UID'] );
@@ -104,8 +103,7 @@ try {
print G::json_encode( $result ); print G::json_encode( $result );
break; break;
} }
} } catch (Exception $oException) {
catch (Exception $oException) {
die( $oException->getMessage() ); die( $oException->getMessage() );
} }
?>

View File

@@ -20,7 +20,6 @@
* *
* For more information, contact Colosa Inc, 2566 Le Jeune Rd., * For more information, contact Colosa Inc, 2566 Le Jeune Rd.,
* Coral Gables, FL, 33134, USA, or email info@colosa.com. * Coral Gables, FL, 33134, USA, or email info@colosa.com.
*
*/ */
try { try {
global $RBAC; global $RBAC;
@@ -28,20 +27,19 @@ try {
case - 2: case - 2:
G::SendTemporalMessage( 'ID_USER_HAVENT_RIGHTS_SYSTEM', 'error', 'labels' ); G::SendTemporalMessage( 'ID_USER_HAVENT_RIGHTS_SYSTEM', 'error', 'labels' );
G::header( 'location: ../login/login' ); G::header( 'location: ../login/login' );
die; die();
break; break;
case - 1: case - 1:
G::SendTemporalMessage( 'ID_USER_HAVENT_RIGHTS_PAGE', 'error', 'labels' ); G::SendTemporalMessage( 'ID_USER_HAVENT_RIGHTS_PAGE', 'error', 'labels' );
G::header( 'location: ../login/login' ); G::header( 'location: ../login/login' );
die; die();
break; break;
} }
require_once 'classes/model/InputDocument.php'; require_once 'classes/model/InputDocument.php';
$oInputDocument = new InputDocument(); $oInputDocument = new InputDocument();
if (isset( $_GET['INP_DOC_UID'] )) { if (isset( $_GET['INP_DOC_UID'] )) {
$aFields = $oInputDocument->load( $_GET['INP_DOC_UID'] ); $aFields = $oInputDocument->load( $_GET['INP_DOC_UID'] );
} } else {
else {
$aFields = array (); $aFields = array ();
$aFields['PRO_UID'] = $_GET['PRO_UID']; $aFields['PRO_UID'] = $_GET['PRO_UID'];
} }
@@ -51,8 +49,7 @@ try {
$G_PUBLISH = new Publisher(); $G_PUBLISH = new Publisher();
$G_PUBLISH->AddContent( 'xmlform', 'xmlform', 'inputdocs/inputdocs_Edit', '', $aFields, '../inputdocs/inputdocs_Save' ); $G_PUBLISH->AddContent( 'xmlform', 'xmlform', 'inputdocs/inputdocs_Edit', '', $aFields, '../inputdocs/inputdocs_Save' );
G::RenderPage( 'publish', 'raw' ); G::RenderPage( 'publish', 'raw' );
} } catch (Exception $oException) {
catch (Exception $oException) {
die( $oException->getMessage() ); die( $oException->getMessage() );
} }
?>

View File

@@ -20,12 +20,14 @@
* *
* For more information, contact Colosa Inc, 2566 Le Jeune Rd., * For more information, contact Colosa Inc, 2566 Le Jeune Rd.,
* Coral Gables, FL, 33134, USA, or email info@colosa.com. * Coral Gables, FL, 33134, USA, or email info@colosa.com.
*
*/ */
if (($RBAC_Response=$RBAC->userCanAccess("PM_FACTORY"))!=1) return $RBAC_Response; if (($RBAC_Response = $RBAC->userCanAccess( "PM_FACTORY" )) != 1) {
return $RBAC_Response;
}
//G::genericForceLogin( 'WF_MYINFO' , 'login/noViewPage', $urlLogin = 'login/login' ); //G::genericForceLogin( 'WF_MYINFO' , 'login/noViewPage', $urlLogin = 'login/login' );
$G_MAIN_MENU = 'processmaker'; $G_MAIN_MENU = 'processmaker';
$G_SUB_MENU = 'processes'; $G_SUB_MENU = 'processes';
$G_ID_MENU_SELECTED = 'PROCESSES'; $G_ID_MENU_SELECTED = 'PROCESSES';
@@ -34,10 +36,9 @@ if (($RBAC_Response=$RBAC->userCanAccess("PM_FACTORY"))!=1) return $RBAC_Respons
$dbc = new DBConnection(); $dbc = new DBConnection();
$ses = new DBSession( $dbc ); $ses = new DBSession( $dbc );
$G_PUBLISH = new Publisher; $G_PUBLISH = new Publisher();
$G_PUBLISH->AddContent( 'pagedtable', 'paged-table', 'inputdocs/inputdocs_List', '', array ('SYS_LANG' => SYS_LANG), 'inputdocs_Save' ); $G_PUBLISH->AddContent( 'pagedtable', 'paged-table', 'inputdocs/inputdocs_List', '', array ('SYS_LANG' => SYS_LANG), 'inputdocs_Save' );
G::RenderPage( "publish" ); G::RenderPage( "publish" );
?>

View File

@@ -20,7 +20,6 @@
* *
* For more information, contact Colosa Inc, 2566 Le Jeune Rd., * For more information, contact Colosa Inc, 2566 Le Jeune Rd.,
* Coral Gables, FL, 33134, USA, or email info@colosa.com. * Coral Gables, FL, 33134, USA, or email info@colosa.com.
*
*/ */
try { try {
global $RBAC; global $RBAC;
@@ -28,19 +27,20 @@ try {
case - 2: case - 2:
G::SendTemporalMessage( 'ID_USER_HAVENT_RIGHTS_SYSTEM', 'error', 'labels' ); G::SendTemporalMessage( 'ID_USER_HAVENT_RIGHTS_SYSTEM', 'error', 'labels' );
G::header( 'location: ../login/login' ); G::header( 'location: ../login/login' );
die; die();
break; break;
case - 1: case - 1:
G::SendTemporalMessage( 'ID_USER_HAVENT_RIGHTS_PAGE', 'error', 'labels' ); G::SendTemporalMessage( 'ID_USER_HAVENT_RIGHTS_PAGE', 'error', 'labels' );
G::header( 'location: ../login/login' ); G::header( 'location: ../login/login' );
die; die();
break; break;
} }
if(isset($_POST['function'])) if (isset( $_POST['function'] )) {
$sfunction = $_POST['function']; $sfunction = $_POST['function'];
else } else {
$sfunction = $_POST['functions']; $sfunction = $_POST['functions'];
}
switch ($sfunction) { switch ($sfunction) {
case 'lookForNameInput': case 'lookForNameInput':
@@ -70,27 +70,27 @@ try {
$oDataset1->next(); $oDataset1->next();
$aRow1 = $oDataset1->getRow(); $aRow1 = $oDataset1->getRow();
if($aRow1['INPUTS'])$flag=false; if ($aRow1['INPUTS']) {
$flag = false;
}
} }
print $flag; print $flag;
break; break;
default: default:
require_once 'classes/model/InputDocument.php'; require_once 'classes/model/InputDocument.php';
G::LoadClass( 'processMap' ); G::LoadClass( 'processMap' );
$oInputDocument = new InputDocument(); $oInputDocument = new InputDocument();
if (isset( $_POST['form'] )) { if (isset( $_POST['form'] )) {
$aData = $_POST['form'];} $aData = $_POST['form'];
else{ } else {
$aData = $_POST;} $aData = $_POST;
}
if ($aData['INP_DOC_UID'] == '') { if ($aData['INP_DOC_UID'] == '') {
unset( $aData['INP_DOC_UID'] ); unset( $aData['INP_DOC_UID'] );
$oInputDocument->create( $aData ); $oInputDocument->create( $aData );
} } else {
else {
$oInputDocument->update( $aData ); $oInputDocument->update( $aData );
} }
@@ -99,9 +99,7 @@ try {
$oCriteria = $oMap->getInputDocumentsCriteria( $aData['PRO_UID'] ); $oCriteria = $oMap->getInputDocumentsCriteria( $aData['PRO_UID'] );
break; break;
} }
} } catch (Exception $oException) {
catch (Exception $oException) {
die( $oException->getMessage() ); die( $oException->getMessage() );
} }
?>