From a1ba0562bd7e48ff9295ac60e5ef071c8dfc8f30 Mon Sep 17 00:00:00 2001 From: Eriksen Costa Paixão Date: Mon, 19 Apr 2010 22:47:06 +0000 Subject: [PATCH] Refactoring para coding standards --- ieducar/intranet/xml_oprot_setor.php | 95 +++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------------- 1 file changed, 49 insertions(+), 46 deletions(-) diff --git a/ieducar/intranet/xml_oprot_setor.php b/ieducar/intranet/xml_oprot_setor.php index a0d0498..de23f32 100755 --- a/ieducar/intranet/xml_oprot_setor.php +++ b/ieducar/intranet/xml_oprot_setor.php @@ -1,47 +1,50 @@ \n\n"; - if( isset( $_GET["setor_pai"] ) ) - { - // Seleciona Filas de atendimento da instituicao - $obj = new clsSetor(); - $lista = $obj->lista( $_GET["setor_pai"] ); - if( $lista ) - { - foreach ( $lista as $linha ) - { - echo " {$linha['sgl_setor']}\n"; - echo " {$linha['cod_setor']}\n"; - } - } - } - echo ""; -?> + +/** + * i-Educar - Sistema de gestão escolar + * + * Copyright (C) 2006 Prefeitura Municipal de Itajaí + * + * + * Este programa é software livre; você pode redistribuí-lo e/ou modificá-lo + * sob os termos da Licença Pública Geral GNU conforme publicada pela Free + * Software Foundation; tanto a versão 2 da Licença, como (a seu critério) + * qualquer versão posterior. + * + * Este programa é distribuí­do na expectativa de que seja útil, porém, SEM + * NENHUMA GARANTIA; nem mesmo a garantia implí­cita de COMERCIABILIDADE OU + * ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA. Consulte a Licença Pública Geral + * do GNU para mais detalhes. + * + * Você deve ter recebido uma cópia da Licença Pública Geral do GNU junto + * com este programa; se não, escreva para a Free Software Foundation, Inc., no + * endereço 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA. + * + * @author Prefeitura Municipal de Itajaí + * @category i-Educar + * @license @@license@@ + * @package iEd + * @since Arquivo disponível desde a versão 1.0.0 + * @version $Id$ + */ + +header('Content-type: text/xml'); + +require_once 'include/pmidrh/geral.inc.php'; + +echo '' . "\n"; +echo '' . "\n"; + +if (isset($_GET['setor_pai'])) { + $obj = new clsSetor(); + $lista = $obj->lista($_GET['setor_pai']); + + if ($lista) { + foreach ($lista as $linha) { + echo ' ' . $linha['sgl_setor'] . '' . "\n"; + echo ' ' . $linha['cod_setor'] . '' . "\n"; + } + } +} + +echo ''; \ No newline at end of file -- libgit2 0.21.2