31 lines
619 B
PHP
31 lines
619 B
PHP
<?php
|
|
if (($RBAC_Response = $RBAC->userCanAccess("PM_FACTORY")) != 1) {
|
|
return $RBAC_Response;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
require_once ("classes/model/Triggers.php");
|
|
|
|
|
|
|
|
|
|
|
|
$arrayField = array();
|
|
$arrayField["LANG"] = SYS_LANG;
|
|
$arrayField["PRO_UID"] = $_GET["PRO_UID"];
|
|
$arrayField["TRI_TYPE"] = "SCRIPT";
|
|
|
|
if (isset($_GET["TRI_UID"]) && !empty($_GET["TRI_UID"])) {
|
|
$oTrigger = new Triggers();
|
|
$arrayField = $oTrigger->load($_GET["TRI_UID"]);
|
|
}
|
|
|
|
$G_PUBLISH = new Publisher();
|
|
$G_PUBLISH->AddContent("xmlform", "xmlform", "triggers/triggerCopy", "", $arrayField, "../triggers/triggers_Save");
|
|
|
|
G::RenderPage("publish", "raw");
|
|
|