HOR-1471
HOR-1471 HOR-1471
This commit is contained in:
@@ -293,7 +293,9 @@ if (! defined ('SYS_SYS')) {
|
||||
processWorkspace ();
|
||||
}
|
||||
catch (Exception $e) {
|
||||
echo $e->getMessage ();
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($e, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
eprintln ("Problem in workspace: " . $sObject . ' it was omitted.', 'red');
|
||||
}
|
||||
eprintln ();
|
||||
|
||||
@@ -133,7 +133,9 @@ function change_hash($command, $opts)
|
||||
$workspace->close();
|
||||
CLI::logging(pakeColor::colorize("Changed...", "ERROR") . "\n");
|
||||
} catch (Exception $e) {
|
||||
echo "> Error: ".CLI::error(G::getErrorMessage($e)) . "\n";
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($e, $token);
|
||||
G::outRes( "> Error: " . CLI::error(G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token))) . "\n" );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@ class actionsByEmailCoreClass extends PMPlugin
|
||||
|
||||
public function setup()
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
|
||||
public function getFieldsForPageSetup()
|
||||
@@ -66,7 +66,9 @@ class actionsByEmailCoreClass extends PMPlugin
|
||||
error_log('The parameter $data->USR_UID is empty, the routed task may be a self-service type, actions by email does not work with self-service task types.', 0);
|
||||
}
|
||||
} catch(Exception $e) {
|
||||
echo $e->getMessage().' Please contact to your system administrator.';
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($e, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
G::LoadClass('pmFunctions');
|
||||
|
||||
@@ -318,7 +318,10 @@ class AppEvent extends BaseAppEvent
|
||||
return $c;
|
||||
} catch (Exception $oError) {
|
||||
$log[] = ' Error execute event : ' . $oError->getMessage();
|
||||
die( $oError->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oError, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
return $oError->getMessage();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -192,7 +192,9 @@ class Translation extends BaseTranslation
|
||||
$res['rowsJS'] = count( $translationJS );
|
||||
return $res;
|
||||
} catch (Exception $e) {
|
||||
echo $e->getMessage();
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($e, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -239,7 +241,9 @@ class Translation extends BaseTranslation
|
||||
$res['rowsMafeJS'] = count( $translation );
|
||||
return $res;
|
||||
} catch (Exception $e) {
|
||||
echo $e->getMessage();
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($e, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -362,7 +366,9 @@ class Translation extends BaseTranslation
|
||||
$res['rowsJS'] = count( $translationJS );
|
||||
return $res;
|
||||
} catch (Exception $e) {
|
||||
echo $e->getMessage();
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($e, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1235,7 +1235,10 @@ class adminProxy extends HttpProxyController
|
||||
break;
|
||||
}
|
||||
} catch (Exception $oException) {
|
||||
die($oException->getMessage());
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
exit();
|
||||
}
|
||||
|
||||
@@ -136,7 +136,10 @@ try {
|
||||
$response = isset( $aAuth[$authUID] ) ? 'false' : 'true';
|
||||
echo '{success: ' . $response . '}';
|
||||
} catch (Exception $ex) {
|
||||
echo '{success: false, error: ' . $ex->getMessage() . '}';
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($ex, $token);
|
||||
$varRes = '{success: false, error: ' . G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) . '}';
|
||||
G::outRes( $varRes );
|
||||
}
|
||||
break;
|
||||
case 'deleteAuthSource':
|
||||
@@ -145,7 +148,10 @@ try {
|
||||
$RBAC->removeAuthSource( $_POST['auth_uid'] );
|
||||
echo '{success: true}';
|
||||
} catch (Exception $ex) {
|
||||
echo '{success: false, error: ' . $ex->getMessage() . '}';
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($ex, $token);
|
||||
$varRes = '{success: false, error: ' . G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) . '}';
|
||||
G::outRes( $varRes );
|
||||
}
|
||||
break;
|
||||
case 'authSourcesNew':
|
||||
|
||||
@@ -13,7 +13,9 @@ try {
|
||||
|
||||
G::header("Location: cases_Scheduler_List?PRO_UID=" . $prossesUid);
|
||||
} catch (Exception $e) {
|
||||
echo $e->getMessage();
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($e, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
|
||||
exit(0);
|
||||
}
|
||||
|
||||
@@ -53,6 +53,8 @@ try {
|
||||
}
|
||||
}
|
||||
} catch (Exception $e) {
|
||||
echo $e->getMessage();
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($e, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
}
|
||||
|
||||
|
||||
@@ -91,7 +91,10 @@ try {
|
||||
$G_PUBLISH->AddContent( 'dynaform', 'xmlform', $aDyn['PRO_UID'] . '/' . $aDyn['DYN_UID'], '', $Fields['APP_DATA'], '', '', 'view' );
|
||||
G::RenderPage( 'publish', 'blank' );
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
?>
|
||||
|
||||
|
||||
@@ -117,6 +117,9 @@ try {
|
||||
G::RenderPage( 'publish', 'blank' );
|
||||
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -143,7 +143,10 @@ try {
|
||||
|
||||
G::RenderPage( 'publish', 'blank' );
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<div id="publisherContent[10]" style="display: none"></div>
|
||||
|
||||
@@ -70,6 +70,9 @@ try {
|
||||
|
||||
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -136,6 +136,9 @@ try {
|
||||
G::RenderPage( 'publishBlank', 'blank' );
|
||||
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -82,6 +82,9 @@ try {
|
||||
G::RenderPage( 'publishBlank', 'blank' );
|
||||
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -95,6 +95,9 @@ try {
|
||||
G::RenderPage( 'publishBlank', 'blank' );
|
||||
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -69,6 +69,9 @@ try {
|
||||
$G_PUBLISH->AddContent( 'xmlform', 'xmlform', 'cases/cases_ReassignShowInfo', '', $aMessage );
|
||||
G::RenderPage( 'publish' );
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -722,7 +722,9 @@ try {
|
||||
break;
|
||||
}
|
||||
} catch (Exception $e) {
|
||||
echo G::json_encode($e->getMessage());
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($e, $token);
|
||||
G::outRes( G::json_encode( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) ) );
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -70,6 +70,8 @@ try {
|
||||
$result['data'] = $rows;
|
||||
print G::json_encode( $result );
|
||||
} catch (Exception $e) {
|
||||
print G::json_encode ($e->getMessage());
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($e, $token);
|
||||
G::outRes( G::json_encode( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) ) );
|
||||
}
|
||||
|
||||
|
||||
@@ -136,5 +136,8 @@ try {
|
||||
die('OK');
|
||||
|
||||
} catch (Exception $e) {
|
||||
die($e->getMessage());
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($e, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
@@ -121,9 +121,9 @@ try {
|
||||
$enable = 'enable';
|
||||
}else{
|
||||
$enable = 'disable';
|
||||
}
|
||||
}
|
||||
G::auditLog("ConditionsEditorDynaform", "Dynaform Title: " .$aDYN['DYNAFORM_NAME']. ", Condition Editor: [Function: ".$_POST['function']. ", Fields: ".$_POST['fields_selected']. ", Conditions: ".$_POST['condition']. ", Events: ".$_POST['events']. ", Event Owner: ".$_POST['event_owner_selected']. ", Status: ".$enable."]");
|
||||
|
||||
|
||||
break;
|
||||
case 'delete':
|
||||
require_once 'classes/model/FieldCondition.php';
|
||||
@@ -134,7 +134,9 @@ try {
|
||||
break;
|
||||
}
|
||||
} catch (Exception $e) {
|
||||
print ($e->getMessage()) ;
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($e, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
@@ -343,9 +343,16 @@ try {
|
||||
} else {
|
||||
$result["addons"] = array();
|
||||
}
|
||||
echo G::json_encode($result);
|
||||
G::outRes( G::json_encode($result) );
|
||||
|
||||
} catch (Exception $e) {
|
||||
echo G::json_encode(array("success" => false, "errors" => $e->getMessage()));
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($e, $token);
|
||||
G::outRes(
|
||||
G::json_encode(array(
|
||||
"success" => false,
|
||||
"errors" => G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token))
|
||||
))
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
@@ -186,5 +186,5 @@ if ($status == 0) {
|
||||
$response["success"] = false;
|
||||
}
|
||||
|
||||
echo G::json_encode($response);
|
||||
G::outRes( G::json_encode($response) );
|
||||
|
||||
|
||||
@@ -104,6 +104,9 @@ try {
|
||||
break;
|
||||
}
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -63,6 +63,9 @@ try {
|
||||
$G_PUBLISH->AddContent( 'xmlform', 'xmlform', 'inputdocs/inputdocs_Edit', '', $aFields, '../inputdocs/inputdocs_Save' );
|
||||
G::RenderPage( 'publish', 'raw' );
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -101,6 +101,9 @@ try {
|
||||
break;
|
||||
}
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -18,6 +18,8 @@ try {
|
||||
echo "Nothing to do";
|
||||
}
|
||||
} catch (Exception $e) {
|
||||
echo $e->getMessage();
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($e, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
}
|
||||
|
||||
|
||||
@@ -42,6 +42,9 @@ try {
|
||||
break;
|
||||
}
|
||||
} catch ( Exception $oException ) {
|
||||
die ( $oException->getMessage () );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -61,29 +61,29 @@ try {
|
||||
|
||||
switch ($type) {
|
||||
case 'HTML':
|
||||
global $G_PUBLISH;
|
||||
$G_PUBLISH = new Publisher();
|
||||
$fcontent = '';
|
||||
$proUid = '';
|
||||
$filename = '';
|
||||
$title = '';
|
||||
require_once 'classes/model/OutputDocument.php';
|
||||
$oOutputDocument = new OutputDocument();
|
||||
if (isset( $_REQUEST['OUT_DOC_UID'] )) {
|
||||
$aFields = $oOutputDocument->load( $_REQUEST['OUT_DOC_UID'] );
|
||||
$fcontent = $aFields['OUT_DOC_TEMPLATE'];
|
||||
$proUid = $aFields['PRO_UID'];
|
||||
$filename = $aFields['OUT_DOC_FILENAME'];
|
||||
$title = $aFields['OUT_DOC_TITLE'];
|
||||
}
|
||||
$aData = Array (
|
||||
'PRO_UID' => $proUid,
|
||||
'OUT_DOC_TEMPLATE' => $fcontent,
|
||||
'FILENAME' => $filename,
|
||||
'OUT_DOC_UID'=> $_REQUEST['OUT_DOC_UID'],
|
||||
'OUT_DOC_TITLE'=> $title,
|
||||
);
|
||||
$G_PUBLISH->AddContent( 'xmlform', 'xmlform', 'outputdocs/outputdocs_Edit', '', $aData );
|
||||
global $G_PUBLISH;
|
||||
$G_PUBLISH = new Publisher();
|
||||
$fcontent = '';
|
||||
$proUid = '';
|
||||
$filename = '';
|
||||
$title = '';
|
||||
require_once 'classes/model/OutputDocument.php';
|
||||
$oOutputDocument = new OutputDocument();
|
||||
if (isset( $_REQUEST['OUT_DOC_UID'] )) {
|
||||
$aFields = $oOutputDocument->load( $_REQUEST['OUT_DOC_UID'] );
|
||||
$fcontent = $aFields['OUT_DOC_TEMPLATE'];
|
||||
$proUid = $aFields['PRO_UID'];
|
||||
$filename = $aFields['OUT_DOC_FILENAME'];
|
||||
$title = $aFields['OUT_DOC_TITLE'];
|
||||
}
|
||||
$aData = Array (
|
||||
'PRO_UID' => $proUid,
|
||||
'OUT_DOC_TEMPLATE' => $fcontent,
|
||||
'FILENAME' => $filename,
|
||||
'OUT_DOC_UID'=> $_REQUEST['OUT_DOC_UID'],
|
||||
'OUT_DOC_TITLE'=> $title,
|
||||
);
|
||||
$G_PUBLISH->AddContent( 'xmlform', 'xmlform', 'outputdocs/outputdocs_Edit', '', $aData );
|
||||
G::RenderPage( 'publish', 'blank' );
|
||||
die();
|
||||
break;
|
||||
@@ -98,8 +98,8 @@ try {
|
||||
$extension = 'pdf';
|
||||
}
|
||||
|
||||
// The ereg_replace function has been DEPRECATED as of PHP 5.3.0.
|
||||
// $downFileName = ereg_replace('[^A-Za-z0-9_]', '_', $aFields['OUT_DOC_TITLE'] ) . '.' . $extension;
|
||||
// The ereg_replace function has been DEPRECATED as of PHP 5.3.0.
|
||||
// $downFileName = ereg_replace('[^A-Za-z0-9_]', '_', $aFields['OUT_DOC_TITLE'] ) . '.' . $extension;
|
||||
$downFileName = preg_replace( '/[^A-Za-z0-9_]/i', '_', $aFields['OUT_DOC_TITLE'] ) . '.' . $extension;
|
||||
$filename = PATH_DYNAFORM . $aFields['PRO_UID'] . PATH_SEP . $aFields['OUT_DOC_UID'] . '.' . $extension;
|
||||
if (file_exists( $filename )) {
|
||||
@@ -115,6 +115,9 @@ try {
|
||||
}
|
||||
G::RenderPage( 'publish', 'raw' );
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
}
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -72,6 +72,9 @@ try {
|
||||
}
|
||||
G::RenderPage( 'publish', 'raw' );
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -63,15 +63,15 @@ try {
|
||||
break;
|
||||
case 'JRXML':
|
||||
$G_PUBLISH->AddContent( 'xmlform', 'xmlform', 'outputdocs/outputdocs_Properties', '', $aFields, '../outputdocs/outputdocs_Save' );
|
||||
/*
|
||||
// $G_PUBLISH->AddContent('xmlform', 'xmlform', 'outputdocs/outputdocsDynaformList', '', $aFields , '../outputdocs/outputdocs_Save');
|
||||
require_once 'classes/model/Process.php';
|
||||
G::LoadClass( 'processMap');
|
||||
$sProcessUID = $aFields['PRO_UID'];
|
||||
$oProcess = new Process();
|
||||
$oProcessMap = new ProcessMap();
|
||||
$aFields = $oProcess->load($sProcessUID);
|
||||
$G_PUBLISH->AddContent('propeltable', 'paged-table', 'dynaforms/dynaforms_ShortList', $oProcessMap->getDynaformsCriteria($sProcessUID), $aFields);
|
||||
/*
|
||||
// $G_PUBLISH->AddContent('xmlform', 'xmlform', 'outputdocs/outputdocsDynaformList', '', $aFields , '../outputdocs/outputdocs_Save');
|
||||
require_once 'classes/model/Process.php';
|
||||
G::LoadClass( 'processMap');
|
||||
$sProcessUID = $aFields['PRO_UID'];
|
||||
$oProcess = new Process();
|
||||
$oProcessMap = new ProcessMap();
|
||||
$aFields = $oProcess->load($sProcessUID);
|
||||
$G_PUBLISH->AddContent('propeltable', 'paged-table', 'dynaforms/dynaforms_ShortList', $oProcessMap->getDynaformsCriteria($sProcessUID), $aFields);
|
||||
*/
|
||||
break;
|
||||
case 'ACROFORM':
|
||||
@@ -80,6 +80,9 @@ try {
|
||||
}
|
||||
G::RenderPage( 'publish', 'raw' );
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
}
|
||||
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -86,6 +86,9 @@ try {
|
||||
}
|
||||
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -28,6 +28,10 @@ try {
|
||||
print "<font face='Arial' size='2' >File uploaded.</font>";
|
||||
|
||||
} catch (Exception $e) {
|
||||
print "<font face='Arial' size='2' color='red' >Error: " . $e->getMessage() . "</font>";
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($e, $token);
|
||||
$varRes = "<font face='Arial' size='2' color='red' >Error: " . G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) . "</font>";
|
||||
G::outRes( $varRes );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -118,7 +118,8 @@ if (isset( $_REQUEST['action'] )) {
|
||||
G::auditLog("CreateCategory", "Category Name: ".$catName);
|
||||
echo '{success: true}';
|
||||
} catch (Exception $ex) {
|
||||
echo '{success: false, error: ' . $ex->getMessage() . '}';
|
||||
$varEcho = '{success: false, error: ' . $ex->getMessage() . '}';
|
||||
G::outRes( $varEcho );
|
||||
}
|
||||
break;
|
||||
case 'checkEditCategoryName':
|
||||
@@ -149,7 +150,8 @@ if (isset( $_REQUEST['action'] )) {
|
||||
g::auditLog("UpdateCategory", "Category Name: ".$catName." Category ID: (".$catUID.") ");
|
||||
echo '{success: true}';
|
||||
} catch (Exception $ex) {
|
||||
echo '{success: false, error: ' . $ex->getMessage() . '}';
|
||||
$varEcho = '{success: false, error: ' . $ex->getMessage() . '}';
|
||||
G::outRes( $varEcho );
|
||||
}
|
||||
break;
|
||||
case 'canDeleteCategory':
|
||||
@@ -169,7 +171,8 @@ if (isset( $_REQUEST['action'] )) {
|
||||
$catName = $cat->loadByCategoryId( $catUID );
|
||||
$cat->delete();
|
||||
G::auditLog("DeleteCategory", "Category Name: ".$catName." Category ID: (".$catUID.") ");
|
||||
echo '{success: true}';
|
||||
$varEcho = '{success: true}';
|
||||
G::outRes( $varEcho );
|
||||
} catch (Exception $ex) {
|
||||
echo '{success: false, error: ' . $ex->getMessage() . '}';
|
||||
}
|
||||
|
||||
@@ -288,7 +288,10 @@ switch ($request) {
|
||||
$confParams = array('lang' => $lang, 'status' => 'failed');
|
||||
$appCacheViewEngine = $oServerConf->setProperty('APP_CACHE_VIEW_ENGINE', $confParams);
|
||||
|
||||
echo '{success: false, msg:"' . $e->getMessage() . '"}';
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($e, $token);
|
||||
$varRes = '{success: false, msg:"' . G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) . '"}';
|
||||
G::outRes( $varRes );
|
||||
}
|
||||
break;
|
||||
case 'recreate-root':
|
||||
|
||||
@@ -182,7 +182,9 @@ switch ($request) {
|
||||
// print (FAILED . ',' . $smtp->error['error']) ;
|
||||
}
|
||||
} catch (Exception $e) {
|
||||
print (FAILED . ',' . $e->getMessage()) ;
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($e, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
}
|
||||
} else {
|
||||
print (SUCCESSFUL . ', No authentication required!') ;
|
||||
@@ -214,7 +216,9 @@ switch ($request) {
|
||||
print (FAILED . ',' . $resp->msg) ;
|
||||
}
|
||||
} catch (Exception $e) {
|
||||
print (FAILED . ',' . $e->getMessage()) ;
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($e, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
}
|
||||
|
||||
} else {
|
||||
|
||||
@@ -163,7 +163,9 @@ try {
|
||||
$trn->removeTranslationEnvironment( $locale );
|
||||
echo G::LoadTranslation( 'ID_LANGUAGE_DELETED_SUCCESSFULLY' );
|
||||
} catch (Exception $e) {
|
||||
echo $e->getMessage();
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($e, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
}
|
||||
} else {
|
||||
echo str_replace( '{0}', $aRow[0], G::LoadTranslation( 'ID_LANGUAGE_CANT_DELETE' ) );
|
||||
@@ -177,6 +179,8 @@ try {
|
||||
break;
|
||||
}
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
}
|
||||
|
||||
|
||||
@@ -45,6 +45,9 @@ try {
|
||||
|
||||
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -100,6 +100,9 @@ try { //ini_set('display_errors','1');
|
||||
}
|
||||
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -192,12 +192,12 @@ function newSkin ($baseSkin = 'classic')
|
||||
$response['success'] = true;
|
||||
$response['message'] = G::LoadTranslation( 'ID_SKIN_SUCCESS_CREATE' );
|
||||
G::auditLog("CreateSkin", "Skin Name: ".$skinName);
|
||||
print_r( G::json_encode( $response ) );
|
||||
G::outRes( G::json_encode( $response ) );
|
||||
} catch (Exception $e) {
|
||||
$response['success'] = false;
|
||||
$response['message'] = $e->getMessage();
|
||||
$response['error'] = $e->getMessage();
|
||||
print_r( G::json_encode( $response ) );
|
||||
G::outRes( G::json_encode( $response ) );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -308,12 +308,12 @@ function importSkin ()
|
||||
$response['success'] = true;
|
||||
$response['message'] = G::LoadTranslation( 'ID_SKIN_SUCCESSFUL_IMPORTED' );
|
||||
G::auditLog("ImportSkin", "Skin Name: ".$skinName);
|
||||
print_r( G::json_encode( $response ) );
|
||||
G::outRes( G::json_encode( $response ) );
|
||||
} catch (Exception $e) {
|
||||
$response['success'] = false;
|
||||
$response['message'] = $e->getMessage();
|
||||
$response['error'] = $e->getMessage();
|
||||
print_r( G::json_encode( $response ) );
|
||||
G::outRes( G::json_encode( $response ) );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -43,6 +43,9 @@ try {
|
||||
$G_PUBLISH->AddContent( 'xmlform', 'xmlform', 'steps/conditions_Edit', '', $aFields, '../steps/conditions_Save' );
|
||||
G::RenderPage( 'publish-raw', 'raw' );
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -48,6 +48,9 @@ try {
|
||||
$oProcessMap = new ProcessMap();
|
||||
$oProcessMap->getStepsCriteria( $value['TAS_UID'] );
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -207,6 +207,9 @@ try {
|
||||
break;
|
||||
}
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -44,6 +44,9 @@ try {
|
||||
$oProcessMap = new ProcessMap();
|
||||
$oProcessMap->getStepsCriteria( $_POST['TASK'] );
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -43,5 +43,8 @@ try {
|
||||
$oProcessMap = new ProcessMap();
|
||||
$oProcessMap->getStepsCriteria( $_POST['TASK'] );
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
@@ -42,6 +42,9 @@ try {
|
||||
$G_PUBLISH->AddContent( 'propeltable', 'paged-table', 'steps/steps_availableBB', $oProcessMap->getAvailableBBCriteria( $_GET['PROCESS'], $_GET['TASK'] ), $_GET );
|
||||
G::RenderPage( 'publish-raw', 'raw' );
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -46,6 +46,9 @@ try {
|
||||
$oProcessMap = new ProcessMap();
|
||||
$oProcessMap->getStepsCriteria( $_POST['sTask'] );
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -70,6 +70,9 @@ try {
|
||||
break;
|
||||
}
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -43,5 +43,8 @@ try {
|
||||
$oProcessMap = new ProcessMap();
|
||||
$oProcessMap->getStepsCriteria( $_POST['TASK'] );
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
@@ -136,6 +136,9 @@ try {
|
||||
break;
|
||||
}
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -459,6 +459,9 @@ try {
|
||||
break;
|
||||
}
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -46,6 +46,9 @@ try {
|
||||
$G_PUBLISH->AddContent( 'xmlform', 'xmlform', 'tracker/tracker_ConditionsEdit', '', $aFields, '../tracker/tracker_ConditionsSave' );
|
||||
G::RenderPage( 'publish-raw', 'raw' );
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -53,6 +53,9 @@ try {
|
||||
$resultProcess = $infoProcess->load($value['PRO_UID']);
|
||||
G::auditLog('CaseTrackers','Save Condition Case Tracker Object ('.$value['CTO_UID'].', condition: '.$value['CTO_CONDITION'].') in Process "'.$resultProcess['PRO_TITLE'].'"');
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -56,7 +56,7 @@ try {
|
||||
$array['TITLE'] = G::LoadTranslation( 'ID_TITLE' );
|
||||
else
|
||||
$array['TITLE'] = '';
|
||||
// $array['PROCESS'] = G::LoadTranslation('ID_PROCESS');
|
||||
// $array['PROCESS'] = G::LoadTranslation('ID_PROCESS');
|
||||
$array['DATELABEL'] = G::LoadTranslation( 'DATE_LABEL' );
|
||||
|
||||
$G_PUBLISH = new Publisher();
|
||||
@@ -65,37 +65,40 @@ try {
|
||||
G::RenderPage( 'publish', 'blank' );
|
||||
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
?>
|
||||
|
||||
<script>
|
||||
try{
|
||||
oFields = document.getElementsByTagName('input');
|
||||
for(i=0; i<oFields.length; i++){
|
||||
if(oFields[i].type == 'button' || oFields[i].type == 'submit')
|
||||
oFields[i].style.display="none";
|
||||
else
|
||||
oFields[i].disabled="true";
|
||||
}
|
||||
oFields = document.getElementsByTagName('textarea');
|
||||
for(i=0; i<oFields.length; i++){
|
||||
oFields[i].disabled="true";
|
||||
}
|
||||
oFields = document.getElementsByTagName('select');
|
||||
for(i=0; i<oFields.length; i++){
|
||||
oFields[i].disabled="true";
|
||||
}
|
||||
|
||||
oFields = document.getElementsByTagName('td');
|
||||
for(i=0; i<oFields.length; i++){
|
||||
if(oFields[i].className == 'withoutLabel' ){
|
||||
oFields[i].style.display="none";
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
window.print();
|
||||
} catch(e){}
|
||||
?>
|
||||
|
||||
<script>
|
||||
try{
|
||||
oFields = document.getElementsByTagName('input');
|
||||
for(i=0; i<oFields.length; i++){
|
||||
if(oFields[i].type == 'button' || oFields[i].type == 'submit')
|
||||
oFields[i].style.display="none";
|
||||
else
|
||||
oFields[i].disabled="true";
|
||||
}
|
||||
oFields = document.getElementsByTagName('textarea');
|
||||
for(i=0; i<oFields.length; i++){
|
||||
oFields[i].disabled="true";
|
||||
}
|
||||
oFields = document.getElementsByTagName('select');
|
||||
for(i=0; i<oFields.length; i++){
|
||||
oFields[i].disabled="true";
|
||||
}
|
||||
|
||||
oFields = document.getElementsByTagName('td');
|
||||
for(i=0; i<oFields.length; i++){
|
||||
if(oFields[i].className == 'withoutLabel' ){
|
||||
oFields[i].style.display="none";
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
window.print();
|
||||
} catch(e){}
|
||||
</script>
|
||||
|
||||
|
||||
@@ -163,6 +163,9 @@ try {
|
||||
|
||||
G::RenderPage( 'publish' );
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -164,6 +164,9 @@ try {
|
||||
G::SendTemporalMessage( 'ID_CHANGES_SAVED', 'info', 'labels' );
|
||||
G::header( 'location: myInfo' );
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -582,5 +582,8 @@ try {
|
||||
break;
|
||||
}
|
||||
} catch (Exception $oException) {
|
||||
die($oException->getMessage());
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
@@ -65,6 +65,9 @@ try {
|
||||
$oUser->update( $aFields );
|
||||
G::header( 'location: users_List' );
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -82,6 +82,9 @@ try {
|
||||
$G_PUBLISH->AddContent( 'xmlform', 'xmlform', 'users/users_ReassignShowInfo', '', $aMessage );
|
||||
G::RenderPage( 'publish' );
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -150,6 +150,9 @@ try {
|
||||
|
||||
G::RenderPage( 'publish', 'blank' );
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -48,6 +48,9 @@ try {
|
||||
$G_PUBLISH->AddContent( 'view', 'users/users_Tree' );
|
||||
G::RenderPage( 'publish', 'raw' );
|
||||
} catch (exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -112,6 +112,9 @@ try {
|
||||
$G_PUBLISH->AddContent( 'xmlform', 'xmlform', 'users/users_New.xml', '', $aFields, 'users_Save' );
|
||||
G::RenderPage( 'publish', 'blank' );
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -42,6 +42,9 @@ try {
|
||||
}
|
||||
}
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -106,6 +106,9 @@ try {
|
||||
}
|
||||
G::RenderPage( 'publish', 'raw' );
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -70,6 +70,9 @@ try {
|
||||
}
|
||||
G::RenderPage( 'publish' );
|
||||
} catch (Exception $oException) {
|
||||
die( $oException->getMessage() );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
@@ -131,7 +131,10 @@ try {
|
||||
echo $javascript . $oTree->render();
|
||||
}
|
||||
catch (Exception $oException) {
|
||||
die($oException->getMessage());
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
unset($_SESSION['PROCESS']);
|
||||
?>
|
||||
@@ -72,7 +72,10 @@ try {
|
||||
|
||||
echo $oTree->render();
|
||||
} catch (Exception $e) {
|
||||
die($e->getMessage());
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($e, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
unset($_SESSION["PROCESS"]);
|
||||
|
||||
@@ -173,7 +173,10 @@ try {
|
||||
print $content;
|
||||
|
||||
} catch ( Exception $oException ) {
|
||||
die ( $oException->getMessage () );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
|
||||
unset ($_SESSION ['PROCESS']);
|
||||
|
||||
@@ -183,6 +183,9 @@ try {
|
||||
print $content;
|
||||
|
||||
} catch ( Exception $oException ) {
|
||||
die ( $oException->getMessage () );
|
||||
$token = strtotime("now");
|
||||
PMException::registerErrorLog($oException, $token);
|
||||
G::outRes( G::LoadTranslation("ID_EXCEPTION_LOG_INTERFAZ", array($token)) );
|
||||
die;
|
||||
}
|
||||
unset ( $_SESSION ['PROCESS'] );
|
||||
|
||||
Reference in New Issue
Block a user