assign("id", $id); $smarty->assign("motivo", $motivo); $smarty->assign("flag", $flag); $smarty->assign("acaoUser", $acaoUser); $smarty->assign("produtiva", $produtiva); $smarty->assign("tempoAlerta", !empty($tempo_alerta) ? $tempo_alerta : 2); $smarty->assign("formAction", FORM_INSERT); $smarty->assign("erro", $msgErro); GetTemplate($smarty, 'cadastros/motivosPausa/motivosPausaCadastro.tpl'); function LimpaGpVar() { $GLOBALS["motivo"] = ""; $GLOBALS["flag"] = 1; $GLOBALS["id"] = 0; $GLOBALS["produtiva"] = 0; $GLOBALS["tempo_alerta"] = 0; } function GetGpValues() { $GLOBALS["id"] = $_POST["id"]; $GLOBALS["motivo"] = mb_strtoupper(RemoveAcentos($_POST["motivo"])); $GLOBALS["flag"] = $_POST["flag"] ? 1 : 0; $GLOBALS["produtiva"] = $_POST["produtiva"]; $GLOBALS["tempo_alerta"] = $_POST["tempo_alerta"] * 60; } ?>