Commit a8937bd31493e0b6beb2004fd8cf81ccb26cb547

Authored by Eder Soares
1 parent c2808dc3
Exists in 2.8 and in 6 other branches 2.2, 2.3, 2.4, 2.5, 2.6, 2.7

Remove adição do CSS de localização do sistema

Showing 139 changed files with 34 additions and 173 deletions   Show diff stats

Too many changes.

To preserve performance only 100 of 139 files displayed.

ieducar/intranet/DocumentacaoPadrao.php
... ... @@ -11,7 +11,6 @@ class clsIndexBase extends clsBase
11 11 {
12 12 $this->SetTitulo( "{$this->_instituicao} i-Educar - Documentação padrão" );
13 13 $this->processoAp = "578";
14   - $this->addEstilo('localizacaoSistema');
15 14 }
16 15 }
17 16  
... ...
ieducar/intranet/agenda.php
... ... @@ -44,7 +44,6 @@ class clsIndex extends clsBase
44 44 $this->processoAp = '0';
45 45 $this->addEstilo( "agenda" );
46 46 $this->addScript( "agenda" );
47   - $this->addEstilo('localizacaoSistema');
48 47 }
49 48 }
50 49  
... ...
ieducar/intranet/agenda_admin_cad.php
... ... @@ -13,7 +13,6 @@ class clsIndex extends clsBase
13 13 {
14 14 $this->SetTitulo( "{$this->_instituicao} Agenda" );
15 15 $this->processoAp = "343";
16   - $this->addEstilo('localizacaoSistema');
17 16 }
18 17 }
19 18  
... ...
ieducar/intranet/agenda_admin_det.php
... ... @@ -13,7 +13,6 @@ class clsIndex extends clsBase
13 13 {
14 14 $this->SetTitulo( "{$this->_instituicao} Agenda" );
15 15 $this->processoAp = "343";
16   - $this->addEstilo('localizacaoSistema');
17 16 }
18 17 }
19 18  
... ...
ieducar/intranet/agenda_admin_lst.php
... ... @@ -12,7 +12,6 @@ class clsIndex extends clsBase
12 12 {
13 13 $this->SetTitulo( "{$this->_instituicao} Agenda" );
14 14 $this->processoAp = "343";
15   - $this->addEstilo('localizacaoSistema');
16 15 }
17 16 }
18 17  
... ...
ieducar/intranet/agenda_imprimir.php
... ... @@ -14,7 +14,6 @@ class clsIndex extends clsBase
14 14 {
15 15 $this->SetTitulo( "{$this->_instituicao} Agenda" );
16 16 $this->processoAp = "345";
17   - $this->addEstilo('localizacaoSistema');
18 17 }
19 18 }
20 19  
... ...
ieducar/intranet/agenda_preferencias.php
... ... @@ -14,7 +14,6 @@ class clsIndex extends clsBase
14 14 {
15 15 $this->SetTitulo( "{$this->_instituicao} Agenda - Preferencias" );
16 16 $this->processoAp = "345";
17   - $this->addEstilo('localizacaoSistema');
18 17 }
19 18 }
20 19  
... ...
ieducar/intranet/agenda_responsavel.php
... ... @@ -7,12 +7,11 @@ require_once ("include/clsBanco.inc.php");
7 7  
8 8 class clsIndex extends clsBase
9 9 {
10   -
  10 +
11 11 function Formular()
12 12 {
13 13 $this->SetTitulo( "{$this->_instituicao} Agenda" );
14 14 $this->processoAp = "341";
15   - $this->addEstilo('localizacaoSistema');
16 15 }
17 16 }
18 17  
... ... @@ -27,51 +26,51 @@ class indice extends clsListagem
27 26 $this->pessoa = $this->pessoa_logada;
28 27  
29 28 $this->titulo = "Agendas que eu posso editar";
30   -
31   -
  29 +
  30 +
32 31 $this->addCabecalhos( array( "Agenda" ) );
33 32  
34 33 $this->campoTexto('pesquisa', 'Agenda', '', 50, 255);
35   -
  34 +
36 35 $db = new clsBanco();
37   -
  36 +
38 37 $and = "";
39   -
  38 +
40 39 if (!empty($_GET['pesquisa']))
41 40 {
42 41 $pesquisa = str_replace(' ', '%', $_GET['pesquisa']);
43 42 $and = "AND nm_agenda ilike ('%{$pesquisa}%')";
44 43 $pesquisa = str_replace('%', ' ', $_GET['pesquisa']);
45 44 }
46   -
  45 +
47 46 $db = new clsBanco();
48 47 $total = $db->UnicoCampo( "SELECT COUNT(0) + (SELECT COUNT(*) FROM portal.agenda_responsavel WHERE ref_ref_cod_pessoa_fj = {$this->pessoa} ) FROM portal.agenda WHERE ref_ref_cod_pessoa_own = {$this->pessoa} {$and} " );
49   -
  48 +
50 49 // Paginador
51 50 $limite = 15;
52 51 $iniciolimit = ( $_GET["pagina_{$this->nome}"] ) ? $_GET["pagina_{$this->nome}"]*$limite-$limite: 0;
53   -
  52 +
54 53 $sql = "SELECT cod_agenda, 1 AS minha FROM agenda WHERE ref_ref_cod_pessoa_own = {$this->pessoa} {$and} UNION SELECT ref_cod_agenda, 0 AS minha FROM agenda_responsavel WHERE ref_ref_cod_pessoa_fj = {$this->pessoa} ORDER BY minha DESC";
55   -
  54 +
56 55 $db1 = new clsBanco();
57 56 $db1->Consulta( $sql );
58 57 while ( $db1->ProximoRegistro() )
59 58 {
60 59 list ( $cd_agenda, $propriedade ) = $db1->Tupla();
61   -
  60 +
62 61 $db2 = new clsBanco();
63 62 $db2->Consulta( "SELECT nm_agenda, ref_ref_cod_pessoa_own FROM agenda WHERE cod_agenda = {$cd_agenda} {$and}" );
64 63 while ( $db2->ProximoRegistro() )
65 64 {
66 65 list ( $nm_agenda, $cod_pessoa_own ) = $db2->Tupla();
67   - $this->addLinhas( array(
  66 + $this->addLinhas( array(
68 67 "<a href='agenda.php?cod_agenda={$cd_agenda}'><img src='imagens/noticia.jpg' border=0>$nm_agenda</a>"));
69 68 }
70 69 }
71   -
  70 +
72 71 // Paginador
73 72 $this->addPaginador2( "agenda_responsavel.php", $total, $_GET, $this->nome, $limite );
74   -
  73 +
75 74 $this->largura = "100%";
76 75  
77 76 $localizacao = new LocalizacaoSistema();
... ... @@ -79,7 +78,7 @@ class indice extends clsListagem
79 78 $_SERVER['SERVER_NAME']."/intranet" => "In&iacute;cio",
80 79 "" => "Agendas"
81 80 ));
82   - $this->enviaLocalizacao($localizacao->montar());
  81 + $this->enviaLocalizacao($localizacao->montar());
83 82 }
84 83 }
85 84  
... ...
ieducar/intranet/conexoes_lst.php
... ... @@ -10,12 +10,11 @@ require_once (&quot;include/clsBanco.inc.php&quot;);
10 10  
11 11 class clsIndex extends clsBase
12 12 {
13   -
  13 +
14 14 function Formular()
15 15 {
16 16 $this->SetTitulo( "{$this->_instituicao} Conexões!" );
17 17 $this->processoAp = "157";
18   - $this->addEstilo('localizacaoSistema');
19 18 }
20 19 }
21 20  
... ... @@ -24,16 +23,16 @@ class indice extends clsListagem
24 23 function Gerar()
25 24 {
26 25 $this->titulo = "Conexões";
27   -
28   -
  26 +
  27 +
29 28 $this->addCabecalhos( array( "Data Hora", "Local do Acesso") );
30   -
  29 +
31 30 // Paginador
32 31 $limite = 20;
33 32 $iniciolimit = ( $_GET["pagina_{$this->nome}"] ) ? $_GET["pagina_{$this->nome}"]*$limite-$limite: 0;
34   -
  33 +
35 34 $id_pessoa = Session::get('id_pessoa');
36   -
  35 +
37 36 $sql = "SELECT b.data_hora, b.ip_externo FROM acesso b WHERE cod_pessoa={$id_pessoa}";
38 37 if (!empty($_GET['status']))
39 38 {
... ... @@ -47,23 +46,23 @@ class indice extends clsListagem
47 46 $data = explode("/", $_GET['data_inicial']);
48 47 $where .= " AND data_hora >= '{$data[2]}-{$data[1]}-{$data[0]}'";
49 48 }
50   -
  49 +
51 50 if(!empty($_GET['data_final']))
52 51 {
53 52 $data = explode("/", $_GET['data_final']);
54 53 $where .= " AND data_hora <= '{$data[2]}-{$data[1]}-{$data[0]}'";
55 54 }
56   -
  55 +
57 56 $db = new clsBanco();
58 57 $total = $db->UnicoCampo("SELECT count(*) FROM acesso WHERE cod_pessoa={$id_pessoa} $where");
59   -
60   - $sql .= " $where ORDER BY b.data_hora DESC LIMIT $iniciolimit, $limite";
61   -
  58 +
  59 + $sql .= " $where ORDER BY b.data_hora DESC LIMIT $iniciolimit, $limite";
  60 +
62 61 $db->Consulta( $sql );
63 62 while ( $db->ProximoRegistro() )
64 63 {
65 64 list ($data_hora, $ip_externo) = $db->Tupla();
66   -
  65 +
67 66 $local = $ip_externo == '200.215.80.163' ? 'Prefeitura' : 'Externo';
68 67  
69 68 $this->addLinhas( array("<img src='imagens/noticia.jpg' border=0>$data_hora", $local ) );
... ... @@ -71,16 +70,16 @@ class indice extends clsListagem
71 70  
72 71 /*$this->acao = "go(\"bairros_cad.php\")";
73 72 $this->nome_acao = "Novo";*/
74   -
  73 +
75 74 $opcoes[""] = "Escolha uma opção...";
76 75 $opcoes["P"] = "Prefeitura";
77 76 $opcoes["X"] = "Externo";
78   -
  77 +
79 78 $this->campoLista( "status", "Status", $opcoes, $_GET['status'] );
80   -
  79 +
81 80 $this->campoData("data_inicial","Data Inicial",$_GET['data_inicial']);
82 81 $this->campoData("data_final","Data Final",$_GET['data_final']);
83   -
  82 +
84 83 $this->addPaginador2( "conexoes_lst.php", $total, $_GET, $this->nome, $limite );
85 84  
86 85 $this->largura = "100%";
... ... @@ -90,7 +89,7 @@ class indice extends clsListagem
90 89 $_SERVER['SERVER_NAME']."/intranet" => "In&iacute;cio",
91 90 "" => "Listagem de conex&otilde;es realizadas"
92 91 ));
93   - $this->enviaLocalizacao($localizacao->montar());
  92 + $this->enviaLocalizacao($localizacao->montar());
94 93  
95 94 }
96 95 }
... ...
ieducar/intranet/educar_acervo_assunto_cad.php
... ... @@ -15,7 +15,6 @@ class clsIndexBase extends clsBase
15 15 {
16 16 $this->SetTitulo( "{$this->_instituicao} i-Educar - Acervo Assunto" );
17 17 $this->processoAp = "592";
18   - $this->addEstilo('localizacaoSistema');
19 18 }
20 19 }
21 20  
... ...
ieducar/intranet/educar_acervo_assunto_det.php
... ... @@ -13,7 +13,6 @@ class clsIndexBase extends clsBase
13 13 {
14 14 $this->SetTitulo( "{$this->_instituicao} i-Educar - Acervo Assunto" );
15 15 $this->processoAp = "592";
16   - $this->addEstilo('localizacaoSistema');
17 16 }
18 17 }
19 18  
... ...
ieducar/intranet/educar_acervo_assunto_lst.php
... ... @@ -11,7 +11,6 @@ class clsIndexBase extends clsBase
11 11 {
12 12 $this->SetTitulo( "{$this->_instituicao} i-Educar - Acervo Assunto" );
13 13 $this->processoAp = "592";
14   - $this->addEstilo('localizacaoSistema');
15 14 }
16 15 }
17 16  
... ...
ieducar/intranet/educar_acervo_autor_cad.php
... ... @@ -13,7 +13,6 @@ class clsIndexBase extends clsBase
13 13 {
14 14 $this->SetTitulo( "{$this->_instituicao} i-Educar - Autor" );
15 15 $this->processoAp = "594";
16   - $this->addEstilo('localizacaoSistema');
17 16 }
18 17 }
19 18  
... ...
ieducar/intranet/educar_acervo_autor_det.php
... ... @@ -12,7 +12,6 @@ class clsIndexBase extends clsBase
12 12 {
13 13 $this->SetTitulo( "{$this->_instituicao} i-Educar - Autor" );
14 14 $this->processoAp = "594";
15   - $this->addEstilo('localizacaoSistema');
16 15 }
17 16 }
18 17  
... ...
ieducar/intranet/educar_acervo_autor_lst.php
... ... @@ -11,7 +11,6 @@ class clsIndexBase extends clsBase
11 11 {
12 12 $this->SetTitulo( "{$this->_instituicao} i-Educar - Autor" );
13 13 $this->processoAp = "594";
14   - $this->addEstilo('localizacaoSistema');
15 14 }
16 15 }
17 16  
... ...
ieducar/intranet/educar_acervo_cad.php
... ... @@ -16,7 +16,6 @@ class clsIndexBase extends clsBase
16 16 {
17 17 $this->SetTitulo( "{$this->_instituicao} i-Educar - Obras" );
18 18 $this->processoAp = "598";
19   - $this->addEstilo('localizacaoSistema');
20 19 }
21 20 }
22 21  
... ...
ieducar/intranet/educar_acervo_colecao_cad.php
... ... @@ -13,7 +13,6 @@ class clsIndexBase extends clsBase
13 13 {
14 14 $this->SetTitulo( "{$this->_instituicao} i-Educar - Cole&ccedil;&atilde;o" );
15 15 $this->processoAp = "593";
16   - $this->addEstilo('localizacaoSistema');
17 16 }
18 17 }
19 18  
... ...
ieducar/intranet/educar_acervo_colecao_det.php
... ... @@ -12,7 +12,6 @@ class clsIndexBase extends clsBase
12 12 {
13 13 $this->SetTitulo( "{$this->_instituicao} i-Educar - Cole&ccedil&atilde;o" );
14 14 $this->processoAp = "593";
15   - $this->addEstilo('localizacaoSistema');
16 15 }
17 16 }
18 17  
... ...
ieducar/intranet/educar_acervo_colecao_lst.php
... ... @@ -11,7 +11,6 @@ class clsIndexBase extends clsBase
11 11 {
12 12 $this->SetTitulo( "{$this->_instituicao} i-Educar - Cole&ccedil&atilde;o" );
13 13 $this->processoAp = "593";
14   - $this->addEstilo('localizacaoSistema');
15 14 }
16 15 }
17 16  
... ...
ieducar/intranet/educar_acervo_det.php
... ... @@ -13,7 +13,6 @@ class clsIndexBase extends clsBase
13 13 {
14 14 $this->SetTitulo( "{$this->_instituicao} i-Educar - Obras" );
15 15 $this->processoAp = "598";
16   - $this->addEstilo('localizacaoSistema');
17 16 }
18 17 }
19 18  
... ...
ieducar/intranet/educar_acervo_editora_cad.php
... ... @@ -13,7 +13,6 @@ class clsIndexBase extends clsBase
13 13 {
14 14 $this->SetTitulo( "{$this->_instituicao} i-Educar - Editora" );
15 15 $this->processoAp = "595";
16   - $this->addEstilo('localizacaoSistema');
17 16 }
18 17 }
19 18  
... ...
ieducar/intranet/educar_acervo_editora_det.php
... ... @@ -12,7 +12,6 @@ class clsIndexBase extends clsBase
12 12 {
13 13 $this->SetTitulo( "{$this->_instituicao} i-Educar - Editora" );
14 14 $this->processoAp = "595";
15   - $this->addEstilo('localizacaoSistema');
16 15 }
17 16 }
18 17  
... ...
ieducar/intranet/educar_acervo_editora_lst.php
... ... @@ -11,7 +11,6 @@ class clsIndexBase extends clsBase
11 11 {
12 12 $this->SetTitulo( "{$this->_instituicao} i-Educar - Editora" );
13 13 $this->processoAp = "595";
14   - $this->addEstilo('localizacaoSistema');
15 14 }
16 15 }
17 16  
... ...
ieducar/intranet/educar_acervo_idioma_cad.php
... ... @@ -13,7 +13,6 @@ class clsIndexBase extends clsBase
13 13 {
14 14 $this->SetTitulo( "{$this->_instituicao} i-Educar - Idioma" );
15 15 $this->processoAp = "590";
16   - $this->addEstilo('localizacaoSistema');
17 16 }
18 17 }
19 18  
... ...
ieducar/intranet/educar_acervo_idioma_det.php
... ... @@ -12,7 +12,6 @@ class clsIndexBase extends clsBase
12 12 {
13 13 $this->SetTitulo( "{$this->_instituicao} i-Educar - Idioma" );
14 14 $this->processoAp = "590";
15   - $this->addEstilo('localizacaoSistema');
16 15 }
17 16 }
18 17  
... ...
ieducar/intranet/educar_acervo_idioma_lst.php
... ... @@ -11,7 +11,6 @@ class clsIndexBase extends clsBase
11 11 {
12 12 $this->SetTitulo( "{$this->_instituicao} i-Educar - Idioma" );
13 13 $this->processoAp = "590";
14   - $this->addEstilo('localizacaoSistema');
15 14 }
16 15 }
17 16  
... ...
ieducar/intranet/educar_acervo_lst.php
... ... @@ -11,7 +11,6 @@ class clsIndexBase extends clsBase
11 11 {
12 12 $this->SetTitulo( "{$this->_instituicao} i-Educar - Obras" );
13 13 $this->processoAp = "598";
14   - $this->addEstilo('localizacaoSistema');
15 14 }
16 15 }
17 16  
... ...
ieducar/intranet/educar_ano_letivo_modulo_cad.php
... ... @@ -19,7 +19,6 @@ class clsIndexBase extends clsBase
19 19 {
20 20 $this->SetTitulo($this->_instituicao . ' Ano Letivo Etapa');
21 21 $this->processoAp = 561;
22   - $this->addEstilo('localizacaoSistema');
23 22 }
24 23 }
25 24  
... ...
ieducar/intranet/educar_avancar_mod_cad.php
... ... @@ -6,7 +6,6 @@ class clsIndexBase extends clsBase
6 6 {
7 7 $this->SetTitulo($this->_instituicao . ' i-Educar');
8 8 $this->processoAp = '845';
9   - $this->addEstilo('localizacaoSistema');
10 9 }
11 10 }
12 11  
... ...
ieducar/intranet/educar_backup_lst.php
... ... @@ -12,7 +12,6 @@ class clsIndexBase extends clsBase
12 12 {
13 13 $this->SetTitulo( "{$this->_instituicao} Backups" );
14 14 $this->processoAp = "9998858";
15   - $this->addEstilo('localizacaoSistema');
16 15 }
17 16 }
18 17  
... ...
ieducar/intranet/educar_biblioteca_cad.php
... ... @@ -14,7 +14,6 @@ class clsIndexBase extends clsBase
14 14 {
15 15 $this->SetTitulo( "{$this->_instituicao} i-Educar - Biblioteca" );
16 16 $this->processoAp = "591";
17   - $this->addEstilo('localizacaoSistema');
18 17 }
19 18 }
20 19  
... ...
ieducar/intranet/educar_biblioteca_dados_cad.php
... ... @@ -13,7 +13,6 @@ class clsIndexBase extends clsBase
13 13 {
14 14 $this->SetTitulo( "{$this->_instituicao} i-Educar - Dados Biblioteca" );
15 15 $this->processoAp = "629";
16   - $this->addEstilo('localizacaoSistema');
17 16 }
18 17 }
19 18  
... ...
ieducar/intranet/educar_biblioteca_dados_det.php
... ... @@ -12,7 +12,6 @@ class clsIndexBase extends clsBase
12 12 {
13 13 $this->SetTitulo( "{$this->_instituicao} i-Educar - Dados Biblioteca" );
14 14 $this->processoAp = "629";
15   - $this->addEstilo('localizacaoSistema');
16 15 }
17 16 }
18 17  
... ...
ieducar/intranet/educar_biblioteca_dados_lst.php
... ... @@ -11,7 +11,6 @@ class clsIndexBase extends clsBase
11 11 {
12 12 $this->SetTitulo( "{$this->_instituicao} i-Educar - Dados Biblioteca" );
13 13 $this->processoAp = "629";
14   - $this->addEstilo('localizacaoSistema');
15 14 }
16 15 }
17 16  
... ...
ieducar/intranet/educar_biblioteca_det.php
... ... @@ -12,7 +12,6 @@ class clsIndexBase extends clsBase
12 12 {
13 13 $this->SetTitulo( "{$this->_instituicao} i-Educar - Biblioteca" );
14 14 $this->processoAp = "591";
15   - $this->addEstilo('localizacaoSistema');
16 15 }
17 16 }
18 17  
... ...
ieducar/intranet/educar_biblioteca_lst.php
... ... @@ -11,7 +11,6 @@ class clsIndexBase extends clsBase
11 11 {
12 12 $this->SetTitulo( "{$this->_instituicao} i-Educar - Biblioteca" );
13 13 $this->processoAp = "591";
14   - $this->addEstilo('localizacaoSistema');
15 14 }
16 15 }
17 16  
... ...
ieducar/intranet/educar_categoria_cad.php
... ... @@ -37,7 +37,6 @@ class clsIndexBase extends clsBase
37 37 {
38 38 $this->SetTitulo( "{$this->_instituicao} i-Educar - Categoria obras" );
39 39 $this->processoAp = "598";
40   - $this->addEstilo('localizacaoSistema');
41 40 }
42 41 }
43 42  
... ...
ieducar/intranet/educar_categoria_lst.php
... ... @@ -36,7 +36,6 @@ class clsIndexBase extends clsBase
36 36 {
37 37 $this->SetTitulo( "{$this->_instituicao} i-Educar - Categoria de obras" );
38 38 $this->processoAp = "598";
39   - $this->addEstilo('localizacaoSistema');
40 39 }
41 40 }
42 41  
... ...
ieducar/intranet/educar_categoria_nivel_cad.php
... ... @@ -42,7 +42,6 @@ class clsIndexBase extends clsBase
42 42 public function Formular() {
43 43 $this->SetTitulo($this->_instituicao . 'Servidores - Cadastro Categoria N&iacute;vel');
44 44 $this->processoAp = '829';
45   - $this->addEstilo('localizacaoSistema');
46 45 }
47 46 }
48 47  
... ...
ieducar/intranet/educar_categoria_nivel_det.php
... ... @@ -42,7 +42,6 @@ class clsIndexBase extends clsBase
42 42 public function Formular() {
43 43 $this->SetTitulo($this->_instituicao . 'Servidores - Detalhe Categoria Nível');
44 44 $this->processoAp = "829";
45   - $this->addEstilo('localizacaoSistema');
46 45 }
47 46 }
48 47  
... ...
ieducar/intranet/educar_categoria_nivel_lst.php
... ... @@ -42,7 +42,6 @@ class clsIndexBase extends clsBase
42 42 public function Formular() {
43 43 $this->SetTitulo($this->_instituicao . 'Categorias ou níveis do servidor');
44 44 $this->processoAp = '829';
45   - $this->addEstilo('localizacaoSistema');
46 45 }
47 46 }
48 47  
... ...
ieducar/intranet/educar_categoria_obra_det.php
... ... @@ -34,7 +34,6 @@ class clsIndexBase extends clsBase{
34 34 function Formular(){
35 35 $this->SetTitulo( "{$this->_instituicao} i-Educar - Categoria Obras");
36 36 $this->processoAp = "598";
37   - $this->addEstilo('localizacaoSistema');
38 37 }
39 38 }
40 39  
... ...
ieducar/intranet/educar_cliente_cad.php
... ... @@ -38,7 +38,6 @@ class clsIndexBase extends clsBase
38 38 {
39 39 $this->SetTitulo( "{$this->_instituicao} i-Educar - Cliente" );
40 40 $this->processoAp = "603";
41   - $this->addEstilo('localizacaoSistema');
42 41 }
43 42 }
44 43  
... ...
ieducar/intranet/educar_cliente_det.php
... ... @@ -36,7 +36,6 @@ class clsIndexBase extends clsBase
36 36 {
37 37 $this->SetTitulo( "{$this->_instituicao} i-Educar - Cliente" );
38 38 $this->processoAp = "603";
39   - $this->addEstilo('localizacaoSistema');
40 39 }
41 40 }
42 41  
... ...
ieducar/intranet/educar_cliente_lst.php
... ... @@ -36,7 +36,6 @@ class clsIndexBase extends clsBase
36 36 {
37 37 $this->SetTitulo( "{$this->_instituicao} i-Educar - Cliente" );
38 38 $this->processoAp = "603";
39   - $this->addEstilo('localizacaoSistema');
40 39 }
41 40 }
42 41  
... ...
ieducar/intranet/educar_cliente_tipo_cad.php
... ... @@ -12,7 +12,6 @@ class clsIndexBase extends clsBase
12 12 {
13 13 $this->SetTitulo( "{$this->_instituicao} i-Educar - Tipo Cliente" );
14 14 $this->processoAp = "596";
15   - $this->addEstilo('localizacaoSistema');
16 15 }
17 16 }
18 17  
... ...
ieducar/intranet/educar_cliente_tipo_det.php
... ... @@ -11,7 +11,6 @@ class clsIndexBase extends clsBase
11 11 {
12 12 $this->SetTitulo( "{$this->_instituicao} i-Educar - Tipo Cliente " );
13 13 $this->processoAp = "596";
14   - $this->addEstilo('localizacaoSistema');
15 14 }
16 15 }
17 16  
... ...
ieducar/intranet/educar_cliente_tipo_lst.php
... ... @@ -11,7 +11,6 @@ class clsIndexBase extends clsBase
11 11 {
12 12 $this->SetTitulo( "{$this->_instituicao} i-Educar - Tipo Cliente " );
13 13 $this->processoAp = "596";
14   - $this->addEstilo('localizacaoSistema');
15 14 }
16 15 }
17 16  
... ...
ieducar/intranet/educar_configuracoes_gerais.php
... ... @@ -13,7 +13,6 @@ class clsIndexBase extends clsBase
13 13 {
14 14 $this->SetTitulo($this->_instituicao . ' i-Educar - Configura&ccedil;&otilde;es gerais');
15 15 $this->processoAp = 999873;
16   - $this->addEstilo('localizacaoSistema');
17 16 }
18 17 }
19 18  
... ...
ieducar/intranet/educar_configuracoes_labels.php
... ... @@ -11,7 +11,6 @@ class clsIndexBase extends clsBase
11 11 {
12 12 $this->SetTitulo($this->_instituicao . ' i-Educar - Customiza&ccedil;&atilde;o de labels');
13 13 $this->processoAp = 9998869;
14   - $this->addEstilo('localizacaoSistema');
15 14 }
16 15 }
17 16  
... ...
ieducar/intranet/educar_curso_cad.php
... ... @@ -14,7 +14,6 @@ class clsIndexBase extends clsBase
14 14 {
15 15 $this->SetTitulo($this->_instituicao . ' i-Educar - Curso');
16 16 $this->processoAp = '566';
17   - $this->addEstilo('localizacaoSistema');
18 17 }
19 18 }
20 19  
... ...
ieducar/intranet/educar_deficiencia_cad.php
... ... @@ -16,7 +16,6 @@ class clsIndexBase extends clsBase
16 16 {
17 17 $this->SetTitulo("{$this->_instituicao} i-Educar - Deficiência");
18 18 $this->processoAp = '631';
19   - $this->addEstilo('localizacaoSistema');
20 19 }
21 20 }
22 21  
... ...
ieducar/intranet/educar_dispensa_disciplina_cad.php
... ... @@ -16,7 +16,6 @@ class clsIndexBase extends clsBase
16 16 {
17 17 $this->SetTitulo($this->_instituicao . ' i-Educar - Dispensa Componente Curricular');
18 18 $this->processoAp = 578;
19   - $this->addEstilo('localizacaoSistema');
20 19 }
21 20 }
22 21  
... ... @@ -273,7 +272,7 @@ class indice extends clsCadastro
273 272 {
274 273 $obj_permissoes = new clsPermissoes();
275 274 $obj_permissoes->permissao_cadastra(578, $this->pessoa_logada, 7, 'educar_dispensa_disciplina_lst.php?ref_cod_matricula=' . $this->ref_cod_matricula);
276   -
  275 +
277 276 $dadosDaDispensa = $this->obtemDadosDaDispensa();
278 277 $objetoDispensa = $this->montaObjetoDispensa($dadosDaDispensa);
279 278  
... ...
ieducar/intranet/educar_distribuicao_uniforme_cad.php
... ... @@ -14,7 +14,6 @@ class clsIndexBase extends clsBase
14 14 {
15 15 $this->SetTitulo("{$this->_instituicao} i-Educar - Distribui&ccedil;&atilde;o de uniforme");
16 16 $this->processoAp = 578;
17   - $this->addEstilo('localizacaoSistema');
18 17 }
19 18 }
20 19  
... ...
ieducar/intranet/educar_distribuicao_uniforme_det.php
... ... @@ -13,7 +13,6 @@ class clsIndexBase extends clsBase
13 13 {
14 14 $this->SetTitulo("{$this->_instituicao} i-Educar - Distribuições de uniforme escolar");
15 15 $this->processoAp = '578';
16   - $this->addEstilo('localizacaoSistema');
17 16 }
18 17 }
19 18  
... ...
ieducar/intranet/educar_distribuicao_uniforme_lst.php
... ... @@ -12,7 +12,6 @@ class clsIndexBase extends clsBase
12 12 {
13 13 $this->SetTitulo( "{$this->_instituicao} i-Educar - Distribui&ccedil;&atilde;o de uniforme" );
14 14 $this->processoAp = "578";
15   - $this->addEstilo('localizacaoSistema');
16 15 }
17 16 }
18 17  
... ...
ieducar/intranet/educar_documentacao_instituicao_cad.php
... ... @@ -11,7 +11,6 @@ class clsIndexBase extends clsBase
11 11 {
12 12 $this->SetTitulo( "{$this->_instituicao} i-Educar - Documentação padrão" );
13 13 $this->processoAp = "578";
14   - $this->addEstilo('localizacaoSistema');
15 14 }
16 15 }
17 16  
... ...
ieducar/intranet/educar_escola_lst.php
... ... @@ -11,7 +11,6 @@ class clsIndexBase extends clsBase
11 11 {
12 12 $this->SetTitulo("{$this->_instituicao} i-Educar - Escola");
13 13 $this->processoAp = 561;
14   - $this->addEstilo('localizacaoSistema');
15 14 }
16 15 }
17 16  
... ...
ieducar/intranet/educar_exemplar_baixa.php
... ... @@ -13,7 +13,6 @@ class clsIndexBase extends clsBase
13 13 {
14 14 $this->SetTitulo( "{$this->_instituicao} i-Educar - Exemplar" );
15 15 $this->processoAp = "606";
16   - $this->addEstilo('localizacaoSistema');
17 16 }
18 17 }
19 18  
... ...
ieducar/intranet/educar_exemplar_cad.php
... ... @@ -15,7 +15,6 @@ class clsIndexBase extends clsBase
15 15 {
16 16 $this->SetTitulo( "{$this->_instituicao} i-Educar - Exemplar" );
17 17 $this->processoAp = "606";
18   - $this->addEstilo('localizacaoSistema');
19 18 }
20 19 }
21 20  
... ...
ieducar/intranet/educar_exemplar_det.php
... ... @@ -11,7 +11,6 @@ class clsIndexBase extends clsBase
11 11 {
12 12 $this->SetTitulo( "{$this->_instituicao} i-Educar - Exemplar" );
13 13 $this->processoAp = "606";
14   - $this->addEstilo('localizacaoSistema');
15 14 }
16 15 }
17 16  
... ...
ieducar/intranet/educar_exemplar_devolucao_cad.php
... ... @@ -14,7 +14,6 @@ class clsIndexBase extends clsBase
14 14 {
15 15 $this->SetTitulo( "{$this->_instituicao} i-Educar - Exemplar Devolu&ccedil;&atilde;o" );
16 16 $this->processoAp = "628";
17   - $this->addEstilo('localizacaoSistema');
18 17 }
19 18 }
20 19  
... ...
ieducar/intranet/educar_exemplar_devolucao_det.php
... ... @@ -14,7 +14,6 @@ class clsIndexBase extends clsBase
14 14 {
15 15 $this->SetTitulo( "{$this->_instituicao} i-Educar - Exemplar Devolu&ccedil;&atilde;o" );
16 16 $this->processoAp = "628";
17   - $this->addEstilo('localizacaoSistema');
18 17 }
19 18 }
20 19  
... ...
ieducar/intranet/educar_exemplar_devolucao_lst.php
... ... @@ -12,7 +12,6 @@ class clsIndexBase extends clsBase
12 12 {
13 13 $this->SetTitulo( "{$this->_instituicao} i-Educar - Exemplar Devolu&ccedil;&atilde;o" );
14 14 $this->processoAp = "628";
15   - $this->addEstilo('localizacaoSistema');
16 15 }
17 16 }
18 17  
... ...
ieducar/intranet/educar_exemplar_lst.php
... ... @@ -11,7 +11,6 @@ class clsIndexBase extends clsBase
11 11 {
12 12 $this->SetTitulo( "{$this->_instituicao} i-Educar - Exemplar" );
13 13 $this->processoAp = "606";
14   - $this->addEstilo('localizacaoSistema');
15 14 }
16 15 }
17 16  
... ...
ieducar/intranet/educar_exemplar_renovacao_cad.php
... ... @@ -14,7 +14,6 @@ class clsIndexBase extends clsBase
14 14 {
15 15 $this->SetTitulo( "{$this->_instituicao} i-Educar - Renovação de empréstimo" );
16 16 $this->processoAp = "628";
17   - $this->addEstilo('localizacaoSistema');
18 17 }
19 18 }
20 19  
... ...
ieducar/intranet/educar_exemplar_tipo_cad.php
... ... @@ -12,7 +12,6 @@ class clsIndexBase extends clsBase
12 12 {
13 13 $this->SetTitulo( "{$this->_instituicao} i-Educar - Tipo Exemplar" );
14 14 $this->processoAp = "597";
15   - $this->addEstilo('localizacaoSistema');
16 15 }
17 16 }
18 17  
... ...
ieducar/intranet/educar_exemplar_tipo_det.php
... ... @@ -11,7 +11,6 @@ class clsIndexBase extends clsBase
11 11 {
12 12 $this->SetTitulo( "{$this->_instituicao} i-Educar - Tipo Exemplar" );
13 13 $this->processoAp = "597";
14   - $this->addEstilo('localizacaoSistema');
15 14 }
16 15 }
17 16  
... ...
ieducar/intranet/educar_exemplar_tipo_lst.php
... ... @@ -11,7 +11,6 @@ class clsIndexBase extends clsBase
11 11 {
12 12 $this->SetTitulo( "{$this->_instituicao} i-Educar - Tipo Exemplar" );
13 13 $this->processoAp = "597";
14   - $this->addEstilo('localizacaoSistema');
15 14 }
16 15 }
17 16  
... ...
ieducar/intranet/educar_exportacao_educacenso.php
... ... @@ -49,7 +49,6 @@ class clsIndexBase extends clsBase
49 49 {
50 50 $this->SetTitulo($this->_instituicao . ' i-Educar - Exporta&ccedil;&atilde;o Educacenso');
51 51 $this->processoAp = ($_REQUEST['fase2'] == 1 ? 9998845 : 846);
52   - $this->addEstilo('localizacaoSistema');
53 52 }
54 53 }
55 54  
... ...
ieducar/intranet/educar_exportacao_usuarios.php
... ... @@ -46,7 +46,6 @@ class clsIndexBase extends clsBase
46 46 {
47 47 $this->SetTitulo($this->_instituicao . ' i-Educar - Nova exporta&ccedil;&atilde;o');
48 48 $this->processoAp = 999869;
49   - $this->addEstilo('localizacaoSistema');
50 49 }
51 50 }
52 51  
... ...
ieducar/intranet/educar_fonte_cad.php
... ... @@ -12,7 +12,6 @@ class clsIndexBase extends clsBase
12 12 {
13 13 $this->SetTitulo( "{$this->_instituicao} i-Educar - Fonte" );
14 14 $this->processoAp = "608";
15   - $this->addEstilo('localizacaoSistema');
16 15 }
17 16 }
18 17  
... ...
ieducar/intranet/educar_fonte_det.php
... ... @@ -11,7 +11,6 @@ class clsIndexBase extends clsBase
11 11 {
12 12 $this->SetTitulo( "{$this->_instituicao} i-Educar - Fonte" );
13 13 $this->processoAp = "608";
14   - $this->addEstilo('localizacaoSistema');
15 14 }
16 15 }
17 16  
... ...
ieducar/intranet/educar_fonte_lst.php
... ... @@ -11,7 +11,6 @@ class clsIndexBase extends clsBase
11 11 {
12 12 $this->SetTitulo( "{$this->_instituicao} i-Educar - Fonte" );
13 13 $this->processoAp = "608";
14   - $this->addEstilo('localizacaoSistema');
15 14 }
16 15 }
17 16  
... ...
ieducar/intranet/educar_historico_escolar_cad.php
... ... @@ -14,7 +14,6 @@ class clsIndexBase extends clsBase
14 14 {
15 15 $this->SetTitulo("{$this->_instituicao} i-Educar - Hist&oacute;rico Escolar");
16 16 $this->processoAp = '578';
17   - $this->addEstilo('localizacaoSistema');
18 17 }
19 18 }
20 19  
... ...
ieducar/intranet/educar_historico_escolar_det.php
... ... @@ -12,7 +12,6 @@ class clsIndexBase extends clsBase
12 12 {
13 13 $this->SetTitulo( "{$this->_instituicao} i-Educar - Hist&oacute;rico Escolar" );
14 14 $this->processoAp = "578";
15   - $this->addEstilo('localizacaoSistema');
16 15 }
17 16 }
18 17  
... ...
ieducar/intranet/educar_historico_escolar_lst.php
... ... @@ -13,7 +13,6 @@ class clsIndexBase extends clsBase
13 13 {
14 14 $this->SetTitulo( "{$this->_instituicao} i-Educar - Distribui&ccedil;&atilde;o de uniforme" );
15 15 $this->processoAp = "578";
16   - $this->addEstilo('localizacaoSistema');
17 16 }
18 17 }
19 18  
... ...
ieducar/intranet/educar_importacao_educacenso.php
... ... @@ -55,7 +55,6 @@ class clsIndexBase extends clsBase
55 55 {
56 56 $this->SetTitulo($this->_instituicao . ' i-Educar - Importação educacenso');
57 57 $this->processoAp = 9998849;
58   - $this->addEstilo('localizacaoSistema');
59 58 }
60 59 }
61 60  
... ...
ieducar/intranet/educar_matricula_cad.php
... ... @@ -23,7 +23,6 @@ class clsIndexBase extends clsBase
23 23 {
24 24 $this->SetTitulo($this->_instituicao . ' i-Educar - Matrícula');
25 25 $this->processoAp = 578;
26   - $this->addEstilo('localizacaoSistema');
27 26 }
28 27 }
29 28  
... ...
ieducar/intranet/educar_matricula_det.php
... ... @@ -21,7 +21,6 @@ class clsIndexBase extends clsBase
21 21 {
22 22 $this->SetTitulo($this->_instituicao . ' i-Educar - Matrícula');
23 23 $this->processoAp = 578;
24   - $this->addEstilo('localizacaoSistema');
25 24 }
26 25 }
27 26  
... ...
ieducar/intranet/educar_matricula_turma_cad.php
... ... @@ -16,7 +16,6 @@ class clsIndexBase extends clsBase
16 16 {
17 17 $this->SetTitulo($this->_instituicao . ' i-Educar - Matricula Turma');
18 18 $this->processoAp = 578;
19   - $this->addEstilo('localizacaoSistema');
20 19 }
21 20 }
22 21  
... ...
ieducar/intranet/educar_matricula_turma_det.php
... ... @@ -11,7 +11,6 @@ class clsIndexBase extends clsBase
11 11 {
12 12 $this->SetTitulo($this->_instituicao . ' i-Educar - Matricula Turma');
13 13 $this->processoAp = 578;
14   - $this->addEstilo('localizacaoSistema');
15 14 }
16 15 }
17 16  
... ...
ieducar/intranet/educar_matricula_turma_lst.php
... ... @@ -11,7 +11,6 @@ class clsIndexBase extends clsBase
11 11 {
12 12 $this->SetTitulo($this->_instituicao . ' i-Educar - Matricula Turma');
13 13 $this->processoAp = 578;
14   - $this->addEstilo('localizacaoSistema');
15 14 }
16 15 }
17 16  
... ...
ieducar/intranet/educar_matriculas_turma_lst.php
... ... @@ -11,7 +11,6 @@ class clsIndexBase extends clsBase
11 11 {
12 12 $this->SetTitulo("{$this->_instituicao} i-Educar - Matrículas Turmas");
13 13 $this->processoAp = '659';
14   - $this->addEstilo('localizacaoSistema');
15 14 }
16 15 }
17 16  
... ...
ieducar/intranet/educar_motivo_afastamento_cad.php
... ... @@ -37,7 +37,6 @@ class clsIndexBase extends clsBase
37 37 {
38 38 $this->SetTitulo( "{$this->_instituicao} Servidores - Motivo Afastamento" );
39 39 $this->processoAp = "633";
40   - $this->addEstilo('localizacaoSistema');
41 40 }
42 41 }
43 42  
... ...
ieducar/intranet/educar_motivo_afastamento_det.php
... ... @@ -18,7 +18,6 @@ class clsIndexBase extends clsBase
18 18 {
19 19 $this->SetTitulo( "{$this->_instituicao} Servidores - Motivo Afastamento" );
20 20 $this->processoAp = "633";
21   - $this->addEstilo('localizacaoSistema');
22 21 }
23 22 }
24 23  
... ...
ieducar/intranet/educar_motivo_afastamento_lst.php
... ... @@ -14,7 +14,6 @@ class clsIndexBase extends clsBase
14 14 {
15 15 $this->SetTitulo( "{$this->_instituicao} i-Educar - Motivos de afastamento do servidor" );
16 16 $this->processoAp = "633";
17   - $this->addEstilo('localizacaoSistema');
18 17 }
19 18 }
20 19  
... ...
ieducar/intranet/educar_motivo_baixa_cad.php
... ... @@ -12,7 +12,6 @@ class clsIndexBase extends clsBase
12 12 {
13 13 $this->SetTitulo( "{$this->_instituicao} i-Educar - Motivo Baixa" );
14 14 $this->processoAp = "600";
15   - $this->addEstilo('localizacaoSistema');
16 15 }
17 16 }
18 17  
... ...
ieducar/intranet/educar_motivo_baixa_det.php
... ... @@ -11,7 +11,6 @@ class clsIndexBase extends clsBase
11 11 {
12 12 $this->SetTitulo( "{$this->_instituicao} i-Educar - Motivo Baixa" );
13 13 $this->processoAp = "600";
14   - $this->addEstilo('localizacaoSistema');
15 14 }
16 15 }
17 16  
... ...
ieducar/intranet/educar_motivo_baixa_lst.php
... ... @@ -11,7 +11,6 @@ class clsIndexBase extends clsBase
11 11 {
12 12 $this->SetTitulo( "{$this->_instituicao} i-Educar - Motivo Baixa" );
13 13 $this->processoAp = "600";
14   - $this->addEstilo('localizacaoSistema');
15 14 }
16 15 }
17 16  
... ...
ieducar/intranet/educar_motivo_suspensao_cad.php
... ... @@ -12,7 +12,6 @@ class clsIndexBase extends clsBase
12 12 {
13 13 $this->SetTitulo( "{$this->_instituicao} i-Educar - Motivo Suspens&atilde;o" );
14 14 $this->processoAp = "607";
15   - $this->addEstilo('localizacaoSistema');
16 15 }
17 16 }
18 17  
... ...
ieducar/intranet/educar_motivo_suspensao_det.php
... ... @@ -11,7 +11,6 @@ class clsIndexBase extends clsBase
11 11 {
12 12 $this->SetTitulo( "{$this->_instituicao} i-Educar - Motivo Suspens&atilde;o" );
13 13 $this->processoAp = "607";
14   - $this->addEstilo('localizacaoSistema');
15 14 }
16 15 }
17 16  
... ...
ieducar/intranet/educar_motivo_suspensao_lst.php
... ... @@ -11,7 +11,6 @@ class clsIndexBase extends clsBase
11 11 {
12 12 $this->SetTitulo( "{$this->_instituicao} i-Educar - Motivo Suspens&atilde;o" );
13 13 $this->processoAp = "607";
14   - $this->addEstilo('localizacaoSistema');
15 14 }
16 15 }
17 16  
... ...
ieducar/intranet/educar_nivel_cad.php
... ... @@ -42,7 +42,6 @@ class clsIndexBase extends clsBase
42 42 public function Formular() {
43 43 $this->SetTitulo($this->_instituicao . 'Servidores - Nível');
44 44 $this->processoAp = '829';
45   - $this->addEstilo('localizacaoSistema');
46 45 }
47 46 }
48 47  
... ...
ieducar/intranet/educar_pagamento_multa_cad.php
... ... @@ -14,7 +14,6 @@ class clsIndexBase extends clsBase
14 14 {
15 15 $this->SetTitulo( "{$this->_instituicao} i-Educar - Pagamento Multa" );
16 16 $this->processoAp = "622";
17   - $this->addEstilo('localizacaoSistema');
18 17 }
19 18 }
20 19  
... ...
ieducar/intranet/educar_pagamento_multa_det.php
... ... @@ -14,7 +14,6 @@ class clsIndexBase extends clsBase
14 14 {
15 15 $this->SetTitulo( "{$this->_instituicao} i-Educar - Pagamento Multa" );
16 16 $this->processoAp = "622";
17   - $this->addEstilo('localizacaoSistema');
18 17 }
19 18 }
20 19  
... ...
ieducar/intranet/educar_pagamento_multa_lst.php
... ... @@ -14,7 +14,6 @@ class clsIndexBase extends clsBase
14 14 {
15 15 $this->SetTitulo( "{$this->_instituicao} i-Educar - Pagamento Multa" );
16 16 $this->processoAp = "622";
17   - $this->addEstilo('localizacaoSistema');
18 17 }
19 18 }
20 19  
... ...
ieducar/intranet/educar_quadro_horario_cad.php
... ... @@ -49,7 +49,6 @@ class clsIndexBase extends clsBase
49 49 {
50 50 $this->SetTitulo( "{$this->_instituicao} Servidores - Quadro de Hor&aacute;rios" );
51 51 $this->processoAp = "641";
52   - $this->addEstilo('localizacaoSistema');
53 52 }
54 53 }
55 54  
... ...
ieducar/intranet/educar_quadro_horario_horarios_cad.php
... ... @@ -53,7 +53,6 @@ class clsIndexBase extends clsBase
53 53 {
54 54 $this->SetTitulo($this->_instituicao . ' Servidores - Cadastro de Horários');
55 55 $this->processoAp = '641';
56   - $this->addEstilo('localizacaoSistema');
57 56 }
58 57 }
59 58  
... ...
ieducar/intranet/educar_quadro_horario_lst.php
... ... @@ -55,7 +55,6 @@ class clsIndexBase extends clsBase
55 55 {
56 56 $this->SetTitulo($this->_instituicao . ' i-Educar - Quadro de Horário');
57 57 $this->processoAp = "641";
58   - $this->addEstilo('localizacaoSistema');
59 58 }
60 59 }
61 60  
... ...