Пример #1
0
 function Novo()
 {
     $this->no_paco = $this->no_paco ? 1 : 0;
     $this->end = $this->end ? $this->end : null;
     $this->tipo = $this->tipo ? $this->tipo : null;
     $this->secretario = $this->secretario ? $this->secretario : null;
     $ref_cod_setor = $_GET["setor_atual"] ? $_GET["setor_atual"] : null;
     $obj_setor = new clsSetor(null, $ref_cod_setor, null, $this->cod_pessoa, $this->nm_setor, $this->sgl_setor, null, null, 1, null, $this->no_paco, $this->end, $this->tipo, $this->secretario);
     $cod_setor = $obj_setor->cadastra();
     if (isset($cod_setor)) {
         header("Location: oprot_setor_det.php?cod_setor={$cod_setor}");
     }
     return false;
 }