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

@@ -12,100 +12,98 @@
* *
* This program is distributed in the hope that it will be useful, * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details. * GNU Affero General Public License for more details.
* *
* You should have received a copy of the GNU Affero General Public License * You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
* *
* 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;
switch ($RBAC->userCanAccess('PM_FACTORY')) { switch ($RBAC->userCanAccess( 'PM_FACTORY' )) {
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/StepSupervisor.php'; require_once 'classes/model/StepSupervisor.php';
require_once 'classes/model/ObjectPermission.php'; require_once 'classes/model/ObjectPermission.php';
require_once 'classes/model/InputDocument.php'; require_once 'classes/model/InputDocument.php';
require_once 'classes/model/Step.php'; require_once 'classes/model/Step.php';
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();
$fields2=$oStepSupervisor->loadInfo($_POST['INP_DOC_UID']); $fields2 = $oStepSupervisor->loadInfo( $_POST['INP_DOC_UID'] );
$result->passed=true; $result->passed = true;
if(is_array($fields2)){ if (is_array( $fields2 )) {
$result->passed=false; $result->passed = false;
} }
$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(); }
} print G::json_encode( $result );
print G::json_encode($result); break;
break; case 'deleteInputDocument':
case 'deleteInputDocument': try {
try { $oStepSupervisor = new StepSupervisor();
$oStepSupervisor = new StepSupervisor(); $fields2 = $oStepSupervisor->loadInfo( $_POST['INP_DOC_UID'] );
$fields2=$oStepSupervisor->loadInfo($_POST['INP_DOC_UID']); $oStepSupervisor->remove( $fields2['STEP_UID'] );
$oStepSupervisor->remove($fields2['STEP_UID']);
$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'] );
$oInputDocument->remove($_POST['INP_DOC_UID']); $oInputDocument->remove( $_POST['INP_DOC_UID'] );
$oStep = new Step(); $oStep = new Step();
$oStep->removeStep('INPUT_DOCUMENT', $_POST['INP_DOC_UID']); $oStep->removeStep( 'INPUT_DOCUMENT', $_POST['INP_DOC_UID'] );
$oOP = new ObjectPermission(); $oOP = new ObjectPermission();
$oOP->removeByObject('INPUT', $_POST['INP_DOC_UID']); $oOP->removeByObject( 'INPUT', $_POST['INP_DOC_UID'] );
//refresh dbarray with the last change in inputDocument //refresh dbarray with the last change in inputDocument
$oMap = new processMap(); $oMap = new processMap();
$oCriteria = $oMap->getInputDocumentsCriteria($fields['PRO_UID']); $oCriteria = $oMap->getInputDocumentsCriteria( $fields['PRO_UID'] );
$result->success = true; $result->success = true;
$result->msg = G::LoadTranslation('ID_INPUTDOCUMENT_REMOVED'); $result->msg = G::LoadTranslation( 'ID_INPUTDOCUMENT_REMOVED' );
} catch (Exception $e) { } catch (Exception $e) {
$result->success = false; $result->success = false;
$result->msg = $e->getMessage(); $result->msg = $e->getMessage();
} }
print G::json_encode($result); print G::json_encode( $result );
break; break;
}
} catch (Exception $oException) {
die( $oException->getMessage() );
} }
}
catch (Exception $oException) {
die($oException->getMessage());
}
?>

View File

@@ -1,10 +1,10 @@
<?php <?php
/** /**
* inputdocs_Edit.php * inputdocs_Edit.php
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2008 Colosa Inc.23
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the * published by the Free Software Foundation, either version 3 of the
@@ -12,47 +12,44 @@
* *
* This program is distributed in the hope that it will be useful, * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details. * GNU Affero General Public License for more details.
* *
* You should have received a copy of the GNU Affero General Public License * You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
* *
* 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; switch ($RBAC->userCanAccess( 'PM_FACTORY' )) {
switch ($RBAC->userCanAccess('PM_FACTORY')) { 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 {
} $aFields = array ();
else { $aFields['PRO_UID'] = $_GET['PRO_UID'];
$aFields = array(); }
$aFields['PRO_UID'] = $_GET['PRO_UID']; $aFields['INP_DOC_TAGS'] = isset( $aFields['INP_DOC_TAGS'] ) ? $aFields['INP_DOC_TAGS'] : 'INPUT';
} $aFields['INP_DOC_VERSIONING'] = strval( isset( $aFields['INP_DOC_VERSIONING'] ) ? $aFields['INP_DOC_VERSIONING'] : '' );
$aFields['INP_DOC_TAGS'] = isset ( $aFields['INP_DOC_TAGS']) ? $aFields['INP_DOC_TAGS'] : 'INPUT'; G::LoadClass( 'xmlfield_InputPM' );
$aFields['INP_DOC_VERSIONING'] = strval(isset($aFields['INP_DOC_VERSIONING'])?$aFields['INP_DOC_VERSIONING']:''); $G_PUBLISH = new Publisher();
G::LoadClass('xmlfield_InputPM'); $G_PUBLISH->AddContent( 'xmlform', 'xmlform', 'inputdocs/inputdocs_Edit', '', $aFields, '../inputdocs/inputdocs_Save' );
$G_PUBLISH = new Publisher(); G::RenderPage( 'publish', 'raw' );
$G_PUBLISH->AddContent('xmlform', 'xmlform', 'inputdocs/inputdocs_Edit', '', $aFields , '../inputdocs/inputdocs_Save'); } catch (Exception $oException) {
G::RenderPage('publish', 'raw'); die( $oException->getMessage() );
} }
catch (Exception $oException) {
die($oException->getMessage());
}
?>

View File

@@ -1,10 +1,10 @@
<?php <?php
/** /**
* inputdocs_List.php * inputdocs_List.php
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2008 Colosa Inc.23
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the * published by the Free Software Foundation, either version 3 of the
@@ -12,32 +12,33 @@
* *
* This program is distributed in the hope that it will be useful, * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details. * GNU Affero General Public License for more details.
* *
* You should have received a copy of the GNU Affero General Public License * You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
* *
* 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) {
if (($RBAC_Response=$RBAC->userCanAccess("PM_FACTORY"))!=1) return $RBAC_Response; 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_SUB_MENU = 'processes';
$G_ID_MENU_SELECTED = 'PROCESSES'; $G_MAIN_MENU = 'processmaker';
$G_ID_SUB_MENU_SELECTED = 'INPUTDOCS'; $G_SUB_MENU = 'processes';
$G_ID_MENU_SELECTED = 'PROCESSES';
$dbc = new DBConnection(); $G_ID_SUB_MENU_SELECTED = 'INPUTDOCS';
$ses = new DBSession($dbc);
$dbc = new DBConnection();
$G_PUBLISH = new Publisher; $ses = new DBSession( $dbc );
$G_PUBLISH->AddContent('pagedtable', 'paged-table', 'inputdocs/inputdocs_List', '', array('SYS_LANG' => SYS_LANG) , 'inputdocs_Save'); $G_PUBLISH = new Publisher();
G::RenderPage( "publish" ); $G_PUBLISH->AddContent( 'pagedtable', 'paged-table', 'inputdocs/inputdocs_List', '', array ('SYS_LANG' => SYS_LANG), 'inputdocs_Save' );
?> G::RenderPage( "publish" );

View File

@@ -1,10 +1,10 @@
<?php <?php
/** /**
* inputdocs_Save.php * inputdocs_Save.php
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2008 Colosa Inc.23
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the * published by the Free Software Foundation, either version 3 of the
@@ -12,96 +12,94 @@
* *
* This program is distributed in the hope that it will be useful, * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details. * GNU Affero General Public License for more details.
* *
* You should have received a copy of the GNU Affero General Public License * You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
* *
* 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;
switch ($RBAC->userCanAccess('PM_FACTORY')) { switch ($RBAC->userCanAccess( 'PM_FACTORY' )) {
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){
case 'lookForNameInput':
require_once('classes/model/Content.php');
require_once ( "classes/model/InputDocument.php" );
$snameInput=urldecode($_POST['NAMEINPUT']);
$sPRO_UID=urldecode($_POST['proUid']);
$oCriteria = new Criteria('workflow');
$oCriteria->addSelectColumn ( InputDocumentPeer::INP_DOC_UID );
$oCriteria->add(InputDocumentPeer::PRO_UID, $sPRO_UID);
$oDataset = InputDocumentPeer::doSelectRS($oCriteria);
$oDataset->setFetchmode(ResultSet::FETCHMODE_ASSOC);
$flag=true;
while ($oDataset->next() && $flag) {
$aRow = $oDataset->getRow();
$oCriteria1 = new Criteria('workflow');
$oCriteria1->addSelectColumn('COUNT(*) AS INPUTS');
$oCriteria1->add(ContentPeer::CON_CATEGORY, 'INP_DOC_TITLE');
$oCriteria1->add(ContentPeer::CON_ID, $aRow['INP_DOC_UID']);
$oCriteria1->add(ContentPeer::CON_VALUE, $snameInput);
$oCriteria1->add(ContentPeer::CON_LANG, SYS_LANG);
$oDataset1 = ContentPeer::doSelectRS($oCriteria1);
$oDataset1->setFetchmode(ResultSet::FETCHMODE_ASSOC);
$oDataset1->next();
$aRow1 = $oDataset1->getRow();
if($aRow1['INPUTS'])$flag=false; switch ($sfunction) {
} case 'lookForNameInput':
print $flag; require_once ('classes/model/Content.php');
break; require_once ("classes/model/InputDocument.php");
default:
require_once 'classes/model/InputDocument.php';
G::LoadClass( 'processMap' );
$oInputDocument = new InputDocument(); $snameInput = urldecode( $_POST['NAMEINPUT'] );
if(isset($_POST['form'])){ $sPRO_UID = urldecode( $_POST['proUid'] );
$aData = $_POST['form'];}
else{
$aData = $_POST;}
if ($aData['INP_DOC_UID'] == '') { $oCriteria = new Criteria( 'workflow' );
unset($aData['INP_DOC_UID']); $oCriteria->addSelectColumn( InputDocumentPeer::INP_DOC_UID );
$oInputDocument->create($aData); $oCriteria->add( InputDocumentPeer::PRO_UID, $sPRO_UID );
} $oDataset = InputDocumentPeer::doSelectRS( $oCriteria );
else { $oDataset->setFetchmode( ResultSet::FETCHMODE_ASSOC );
$oInputDocument->update($aData); $flag = true;
} while ($oDataset->next() && $flag) {
$aRow = $oDataset->getRow();
//refresh dbarray with the last change in inputDocument $oCriteria1 = new Criteria( 'workflow' );
$oMap = new processMap(); $oCriteria1->addSelectColumn( 'COUNT(*) AS INPUTS' );
$oCriteria = $oMap->getInputDocumentsCriteria($aData['PRO_UID']); $oCriteria1->add( ContentPeer::CON_CATEGORY, 'INP_DOC_TITLE' );
break; $oCriteria1->add( ContentPeer::CON_ID, $aRow['INP_DOC_UID'] );
} $oCriteria1->add( ContentPeer::CON_VALUE, $snameInput );
} $oCriteria1->add( ContentPeer::CON_LANG, SYS_LANG );
catch (Exception $oException) { $oDataset1 = ContentPeer::doSelectRS( $oCriteria1 );
die($oException->getMessage()); $oDataset1->setFetchmode( ResultSet::FETCHMODE_ASSOC );
$oDataset1->next();
$aRow1 = $oDataset1->getRow();
if ($aRow1['INPUTS']) {
$flag = false;
}
}
print $flag;
break;
default:
require_once 'classes/model/InputDocument.php';
G::LoadClass( 'processMap' );
$oInputDocument = new InputDocument();
if (isset( $_POST['form'] )) {
$aData = $_POST['form'];
} else {
$aData = $_POST;
}
if ($aData['INP_DOC_UID'] == '') {
unset( $aData['INP_DOC_UID'] );
$oInputDocument->create( $aData );
} else {
$oInputDocument->update( $aData );
}
//refresh dbarray with the last change in inputDocument
$oMap = new processMap();
$oCriteria = $oMap->getInputDocumentsCriteria( $aData['PRO_UID'] );
break;
}
} catch (Exception $oException) {
die( $oException->getMessage() );
} }
?>