function Gerar() { @session_start(); $this->pessoa_logada = $_SESSION['id_pessoa']; session_write_close(); $this->titulo = "Telefones - Listagem"; foreach ($_GET as $var => $val) { // passa todos os valores obtidos no GET para atributos do objeto $this->{$var} = $val === "" ? null : $val; } $this->addCabecalhos(array("Nome", "Numero")); // Filtros de Foreign Keys // outros Filtros $this->campoTexto("nome", "Nome", $this->nome, 30, 255, false); $this->campoNumero("numero", "Numero", $this->numero, 15, 255, false); // Paginador $this->limite = 20; $this->offset = $_GET["pagina_{$this->nome}"] ? $_GET["pagina_{$this->nome}"] * $this->limite - $this->limite : 0; $obj_telefones = new clsPmicontrolesisTelefones(); $obj_telefones->setOrderby("nome ASC"); $obj_telefones->setLimite($this->limite, $this->offset); $lista = $obj_telefones->lista($this->cod_telefones, null, null, $this->nome, $this->numero, null, null, 1); $total = $obj_telefones->_total; // monta a lista if (is_array($lista) && count($lista)) { foreach ($lista as $registro) { // muda os campos data $registro["data_cadastro_time"] = strtotime(substr($registro["data_cadastro"], 0, 16)); $registro["data_cadastro_br"] = date("d/m/Y H:i", $registro["data_cadastro_time"]); $registro["data_exclusao_time"] = strtotime(substr($registro["data_exclusao"], 0, 16)); $registro["data_exclusao_br"] = date("d/m/Y H:i", $registro["data_exclusao_time"]); // pega detalhes de foreign_keys $this->addLinhas(array("<a href=\"controlesis_telefones_det.php?cod_telefones={$registro["cod_telefones"]}\">{$registro["nome"]}</a>", "<a href=\"controlesis_telefones_det.php?cod_telefones={$registro["cod_telefones"]}\">{$registro["numero"]}</a>")); } } $this->addPaginador2("controlesis_telefones_lst.php", $total, $_GET, $this->nome, $this->limite); $this->acao = "go(\"controlesis_telefones_cad.php\")"; $this->nome_acao = "Novo"; $this->largura = "100%"; }