本文整理汇总了PHP中clsPermissoes::getInstituicao方法的典型用法代码示例。如果您正苦于以下问题:PHP clsPermissoes::getInstituicao方法的具体用法?PHP clsPermissoes::getInstituicao怎么用?PHP clsPermissoes::getInstituicao使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类clsPermissoes
的用法示例。
在下文中一共展示了clsPermissoes::getInstituicao方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: renderHTML
function renderHTML()
{
@session_start();
$this->pessoa_logada = $_SESSION['id_pessoa'];
session_write_close();
$obj_permissoes = new clsPermissoes();
if ($obj_permissoes->nivel_acesso($this->pessoa_logada) > 7) {
$retorno .= '
<table width="100%" height="40%" cellspacing="1" cellpadding="2" border="0" class="tablelistagem">
<tbody>
<tr>
<td colspan="2" valig="center" height="50">
<center class="formdktd">Usuário sem permissão para acessar esta página</center>
</td>
</tr>
</tbody>
</table>';
return $retorno;
}
$retorno .= '
<table width="100%" cellspacing="1" cellpadding="2" border="0" class="tablelistagem">
<tbody>';
if ($_POST) {
$this->ref_cod_turma = $_POST['ref_cod_turma'] ? $_POST['ref_cod_turma'] : NULL;
$this->ref_cod_serie = $_POST['ref_cod_serie'] ? $_POST['ref_cod_serie'] : NULL;
$this->ref_cod_curso = $_POST['ref_cod_curso'] ? $_POST['ref_cod_curso'] : NULL;
$this->ref_cod_escola = $_POST['ref_cod_escola'] ? $_POST['ref_cod_escola'] : NULL;
$this->ref_cod_instituicao = $_POST['ref_cod_instituicao'] ? $_POST['ref_cod_instituicao'] : NULL;
$this->busca = $_GET['busca'] ? $_GET['busca'] : NULL;
} else {
if ($_GET) {
// Passa todos os valores obtidos no GET para atributos do objeto
foreach ($_GET as $var => $val) {
$this->{$var} = $val === '' ? NULL : $val;
}
}
}
$nivel_usuario = $obj_permissoes->nivel_acesso($this->pessoa_logada);
if (!$this->ref_cod_escola) {
$this->ref_cod_escola = $obj_permissoes->getEscola($this->pessoa_logada);
}
if (!is_numeric($this->ref_cod_instituicao)) {
$this->ref_cod_instituicao = $obj_permissoes->getInstituicao($this->pessoa_logada);
}
// Componente curricular
$componenteMapper = new ComponenteCurricular_Model_ComponenteDataMapper();
$obrigatorio = FALSE;
$get_instituicao = TRUE;
$get_escola = TRUE;
$get_curso = TRUE;
$get_serie = TRUE;
$get_turma = TRUE;
include 'educar_quadro_horarios_pesquisas.php';
if ($this->busca == 'S') {
if (is_numeric($this->ref_cod_turma)) {
$obj_turma = new clsPmieducarTurma($this->ref_cod_turma);
$det_turma = $obj_turma->detalhe();
$obj_quadro = new clsPmieducarQuadroHorario(NULL, NULL, NULL, $this->ref_cod_turma, NULL, NULL, 1);
$det_quadro = $obj_quadro->detalhe();
if (is_array($det_quadro)) {
$quadro_horario = "<table class='calendar' cellspacing='0' cellpadding='0' border='0'><tr><td class='cal_esq' > </td><td background='imagens/i-educar/cal_bg.gif' width='100%' class='mes'>{$det_turma["nm_turma"]}</td><td align='right' class='cal_dir'> </td></tr><tr><td colspan='3' class='bordaM' style='border-bottom: 1px solid #8A959B;' align='center'><table cellspacing='0' cellpadding='0' border='0' ><tr class='header'><td style='border-right: 1px dotted #FFFFFF;width: 100px;'>DOM</td><td style='border-right: 1px dotted #FFFFFF;width: 100px;'>SEG</td><td style='border-right: 1px dotted #FFFFFF;width: 100px;'>TER</td><td style='border-right: 1px dotted #FFFFFF;width: 100px;'>QUA</td><td style='border-right: 1px dotted #FFFFFF;width: 100px;'>QUI</td><td style='border-right: 1px dotted #FFFFFF;width: 100px;'>SEX</td><td style='width: 100px;'>SAB</td></tr>";
$texto = '<tr>';
for ($c = 1; $c <= 7; $c++) {
$obj_horarios = new clsPmieducarQuadroHorarioHorarios();
$resultado = $obj_horarios->retornaHorario($this->ref_cod_instituicao, $this->ref_cod_escola, $this->ref_cod_serie, $this->ref_cod_turma, $c);
$texto .= "<td valign=top align='center' width='100' style='cursor: pointer; ' onclick='envia( this, {$this->ref_cod_turma}, {$this->ref_cod_serie}, {$this->ref_cod_curso}, {$this->ref_cod_escola}, {$this->ref_cod_instituicao}, {$det_quadro["cod_quadro_horario"]}, {$c} );'>";
if (is_array($resultado)) {
foreach ($resultado as $registro) {
// Componente curricular
$componente = $componenteMapper->find($registro['ref_cod_disciplina']);
// Servidor
$obj_servidor = new clsPmieducarServidor();
$det_servidor = array_shift($obj_servidor->lista($registro['ref_servidor'], NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, TRUE));
$det_servidor['nome'] = array_shift(explode(' ', $det_servidor['nome']));
//$texto .= "<div style='text-align: center;background-color: #F6F6F6;font-size: 11px; width: 100px; margin: 3px; border: 1px solid #CCCCCC; padding:5px; '>". substr($registro['hora_inicial'], 0, 5) . ' - ' . substr($registro['hora_final'], 0, 5) . " <br> {$componente->abreviatura} <br> {$det_servidor["nome"]}</div>";
$detalhes = sprintf("%s - %s<br />%s<br />%s", substr($registro['hora_inicial'], 0, 5), substr($registro['hora_final'], 0, 5), $componente->abreviatura, $det_servidor['nome']);
$texto .= sprintf('<div style="text-align: center; background-color: #F6F6F6; font-size: 11px; width: 100px; margin: 3px; border: 1px solid #CCCCCC; padding:5px;">%s</div>', $detalhes);
}
} else {
$texto .= "<div style='text-align: center;background-color: #F6F6F6;font-size: 11px; width: 100px; margin: 3px; border: 1px solid #CCCCCC; padding:5px; height: 85%;'></div>";
}
$texto .= '</td>';
}
$texto .= '<tr><td colspan="7"> </td></tr>';
$quadro_horario .= $texto;
$quadro_horario .= '</table></td></tr></table>';
$retorno .= "<tr><td colspan='2' ><center><b></b>{$quadro_horario}</center></td></tr>";
} else {
$retorno .= "<tr><td colspan='2' ><b><center>Não existe nenhum quadro de horário cadastrado para esta turma.</center></b></td></tr>";
}
}
}
if ($obj_permissoes->permissao_cadastra(641, $this->pessoa_logada, 7)) {
$retorno .= "<tr><td> </td></tr><tr>\n <td align=\"center\" colspan=\"2\">";
if (!$det_quadro) {
$retorno .= "<input type=\"button\" value=\"Novo Quadro de Horários\" onclick=\"window.location='educar_quadro_horario_cad.php?ref_cod_turma={$this->ref_cod_turma}&ref_cod_serie={$this->ref_cod_serie}&ref_cod_curso={$this->ref_cod_curso}&ref_cod_escola={$this->ref_cod_escola}&ref_cod_instituicao={$this->ref_cod_instituicao};'\" class=\"botaolistagem\"/>";
} else {
if ($obj_permissoes->permissao_excluir(641, $this->pessoa_logada, 7)) {
$retorno .= "<input type=\"button\" value=\"Excluir Quadro de Horários\" onclick=\"window.location='educar_quadro_horario_cad.php?ref_cod_turma={$this->ref_cod_turma}&ref_cod_serie={$this->ref_cod_serie}&ref_cod_curso={$this->ref_cod_curso}&ref_cod_escola={$this->ref_cod_escola}&ref_cod_instituicao={$this->ref_cod_instituicao}&ref_cod_quadro_horario={$det_quadro["cod_quadro_horario"]}'\" class=\"botaolistagem\"/>";
}
//.........这里部分代码省略.........
示例2: Gerar
function Gerar()
{
$obj_permissoes = new clsPermissoes();
$nivel_usuario = $obj_permissoes->nivel_acesso($this->pessoa_logada);
if ($_POST) {
foreach ($_POST as $key => $value) {
$this->{$key} = $value;
}
}
$this->ano = $ano_atual = date("Y");
$this->mes = $mes_atual = date("n");
$this->campoNumero("ano", "Ano", $this->ano, 4, 4, true);
$this->campoLista("mes", "Mês", $this->meses_do_ano, date("m"));
$this->ref_cod_escola = $obj_permissoes->getEscola($this->pessoa_logada);
$this->ref_cod_instituicao = $obj_permissoes->getInstituicao($this->pessoa_logada);
$get_escola = true;
//$obrigatorio = true;
$exibe_nm_escola = true;
$get_curso = true;
$get_escola_curso_serie = true;
$escola_obrigatorio = true;
$curso_obrigatorio = false;
$instituicao_obrigatorio = true;
$get_turma = true;
include "include/pmieducar/educar_campo_lista.php";
if ($this->ref_cod_escola) {
$this->ref_ref_cod_escola = $this->ref_cod_escola;
}
$this->url_cancelar = "educar_index.php";
$this->nome_url_cancelar = "Cancelar";
$this->acao_enviar = 'acao2()';
$this->acao_executa_submit = false;
}
示例3: renderHTML
function renderHTML()
{
@session_start();
$this->pessoa_logada = $_SESSION['id_pessoa'];
$_SESSION['calendario']['ultimo_valido'] = 0;
$obj_permissoes = new clsPermissoes();
if ($obj_permissoes->nivel_acesso($this->pessoa_logada) > 7) {
$retorno .= '
<table width="100%" height="40%" cellspacing="1" cellpadding="2" border="0" class="tablelistagem">
<tbody>';
$retorno .= '
<tr>
<td colspan="2" valig="center" height="50">
<center class="formdktd">Usuário sem permissão para acessar esta página</center>
</td>
</tr>';
$retorno .= '
</tbody>
</table>';
return $retorno;
}
$retorno .= '
<table width="100%" cellspacing="1" cellpadding="2" border="0" class="tablelistagem">
<tbody>';
if ($_POST) {
$this->ref_cod_escola = $_POST['ref_cod_escola'] ? $_POST['ref_cod_escola'] : $_SESSION['calendario']['ref_cod_escola'];
$this->ref_cod_instituicao = $_POST['ref_cod_instituicao'] ? $_POST['ref_cod_instituicao'] : $_SESSION['calendario']['ref_cod_instituicao'];
if ($_POST['mes']) {
$this->mes = $_POST['mes'];
}
if ($_POST['ano']) {
$this->ano = $_POST['ano'];
}
if ($_POST['cod_calendario_ano_letivo']) {
$this->cod_calendario_ano_letivo = $_POST['cod_calendario_ano_letivo'];
}
} elseif (isset($_SESSION['calendario'])) {
// passa todos os valores em SESSION para atributos do objeto
foreach ($_SESSION['calendario'] as $var => $val) {
$this->{$var} = $val === '' ? NULL : $val;
}
}
if ($_GET) {
header('Location: educar_calendario_ano_letivo_lst.php');
}
if (!$this->mes) {
$this->mes = date('n');
}
if (!$this->ano) {
$this->ano = date('Y');
}
$nivel_usuario = $obj_permissoes->nivel_acesso($this->pessoa_logada);
if (!$this->ref_cod_escola) {
$this->ref_cod_escola = $obj_permissoes->getEscola($this->pessoa_logada);
}
if (!$this->ref_cod_instituicao) {
$this->ref_cod_instituicao = $obj_permissoes->getInstituicao($this->pessoa_logada);
}
$get_escola = 1;
$obrigatorio = FALSE;
include 'educar_calendario_pesquisas.php';
$obj_calendario_ano_letivo = new clsPmieducarCalendarioAnoLetivo();
$obj_calendario_ano_letivo->setOrderby('ano ASC');
$obj_calendario_ano_letivo->setLimite($this->limite, $this->offset);
$lista = array();
$obj_calendario_ano_letivo->setOrderby('ano');
switch ($nivel_usuario) {
// Poli-institucional
case 1:
case 2:
case 4:
if (!isset($this->ref_cod_escola)) {
break;
}
$lista = $obj_calendario_ano_letivo->lista($this->cod_calendario_ano_letivo, $this->ref_cod_escola, NULL, NULL, !isset($this->cod_calendario_ano_letivo) ? $this->ano : NULL, NULL, NULL, 1);
break;
}
$total = $obj_calendario_ano_letivo->_total;
if (empty($lista)) {
if ($nivel_usuario == 4) {
$retorno .= '<tr><td colspan="2" align="center" class="formdktd">Sem Calendário Letivo</td></tr>';
} else {
if ($_POST) {
$retorno .= '<tr><td colspan="2" align="center" class="formdktd">Sem Calendário para o ano selecionado</td></tr>';
} else {
$retorno .= '<tr><td colspan="2" align="center" class="formdktd">Selecione uma escola para exibir o calendário</td></tr>';
}
}
}
// Monta a lista
if (is_array($lista) && count($lista)) {
foreach ($lista as $key => $registro) {
// Guarda dados na $_SESSION
$_SESSION['calendario'] = array('cod_calendario_ano_letivo' => $registro['cod_calendario_ano_letivo'], 'ref_cod_instituicao' => $this->ref_cod_instituicao, 'ref_cod_escola' => $this->ref_cod_escola, 'ano' => $this->ano, 'mes' => $this->mes);
// Nome da escola
$obj_ref_cod_escola = new clsPmieducarEscola($registro['ref_cod_escola']);
$det_ref_cod_escola = $obj_ref_cod_escola->detalhe();
$registro['nm_escola'] = $det_ref_cod_escola['nome'];
// Início e término do ano letivo.
$obj_ano_letivo_modulo = new clsPmieducarAnoLetivoModulo();
//.........这里部分代码省略.........
示例4: Gerar
function Gerar()
{
@session_start();
$this->pessoa_logada = $_SESSION['id_pessoa'];
session_write_close();
$this->titulo = "Escola - Listagem";
$obj_permissoes = new clsPermissoes();
foreach ($_GET as $var => $val) {
// passa todos os valores obtidos no GET para atributos do objeto
$this->{$var} = $val === "" ? null : $val;
}
$this->addBanner("imagens/nvp_top_intranet.jpg", "imagens/nvp_vert_intranet.jpg", "Intranet");
$cabecalhos = array("Escola");
$nivel = $obj_permissoes->nivel_acesso($this->pessoa_logada);
if ($nivel == 1) {
$cabecalhos[] = "Instituição";
$objInstituicao = new clsPmieducarInstituicao();
$opcoes = array("" => "Selecione");
$objInstituicao->setOrderby("nm_instituicao ASC");
$lista = $objInstituicao->lista();
if (is_array($lista)) {
foreach ($lista as $linha) {
$opcoes[$linha["cod_instituicao"]] = $linha["nm_instituicao"];
}
}
$this->campoLista("ref_cod_instituicao", "Instituição", $opcoes, $this->ref_cod_instituicao, false, false, false, false, false, false);
} else {
$this->ref_cod_instituicao = $obj_permissoes->getInstituicao($this->pessoa_logada);
if ($this->ref_cod_instituicao) {
$this->campoOculto("ref_cod_instituicao", $this->ref_cod_instituicao);
} else {
die("Erro: Usuário não é do nivel poli-institucional e não possui uma instituição");
}
}
$this->addCabecalhos($cabecalhos);
$this->campoTexto("nm_escola", "Escola", $this->nm_escola, 30, 255, false);
// Filtros de Foreign Keys
$this->limite = 10;
$obj_escola = new clsPmieducarEscola();
//$obj_escola->setOrderby( "nome ASC" );
$obj_escola->setLimite($this->limite, ($this->pagina_formulario - 1) * $this->limite);
$cod_escola = $obj_permissoes->getEscola($this->pessoa_logada);
$lista = $obj_escola->lista($cod_escola, null, null, $this->ref_cod_instituicao, null, null, null, null, null, null, 1, $this->nm_escola);
$total = $obj_escola->_total;
// monta a lista
if (is_array($lista) && count($lista)) {
foreach ($lista as $registro) {
$linha = array("<a href=\"educar_escola_det.php?cod_escola={$registro["cod_escola"]}\">{$registro["nome"]}</a>");
if ($nivel == 1) {
$objInstituicao = new clsPmieducarInstituicao($registro["ref_cod_instituicao"]);
$detInstituicao = $objInstituicao->detalhe();
$linha[] = "<a href=\"educar_escola_det.php?cod_escola={$registro["cod_escola"]}\">{$detInstituicao["nm_instituicao"]}</a>";
}
$this->addLinhas($linha);
}
}
$this->addPaginador2("educar_escola_lst.php", $total, $_GET, $this->nome, $this->limite);
if ($obj_permissoes->permissao_cadastra(561, $this->pessoa_logada, 3)) {
$this->acao = "go(\"educar_escola_cad.php\")";
$this->nome_acao = "Novo";
}
$this->largura = "100%";
}
示例5: Gerar
function Gerar()
{
$obj_permissoes = new clsPermissoes();
// echo "<pre>";print_r($_POST);die;
if (!$this->sem_cnpj && !$this->com_cnpj) {
$parametros = new clsParametrosPesquisas();
$parametros->setSubmit(1);
$parametros->setPessoa('J');
$parametros->setPessoaCampo('sem_cnpj');
$parametros->setPessoaNovo("S");
$parametros->setPessoaCPF("N");
$parametros->setPessoaTela('window');
$this->campoOculto("sem_cnpj", "");
$parametros->setCodSistema(13);
$parametros->adicionaCampoTexto("cnpj", "cnpj");
$this->campoCnpjPesq("cnpj", "CNPJ", $this->cnpj, "pesquisa_pessoa_lst.php", $parametros->serializaCampos(), true);
// $this->acao_enviar = "obj = document.getElementById(\"cnpj\");if(obj.value != \"\" ) {document.getElementById(\"formcadastro\").submit(); } else { acao(); }";
$this->acao_enviar = false;
$this->url_cancelar = false;
$this->array_botao = array("Continuar", "Cancelar");
$this->array_botao_url_script = array("obj = document.getElementById('cnpj');if(obj.value != '' ) { acao(); } else { acao(); }", "go('educar_escola_lst.php');");
} else {
if ($_POST) {
foreach ($_POST as $campo => $val) {
if ($campo != 'tipoacao' && $campo != 'sem_cnpj') {
$this->{$campo} = $this->{$campo} ? $this->{$campo} : $val;
}
}
}
if ($this->sem_cnpj) {
$this->campoOculto("sem_cnpj", $this->sem_cnpj);
// cadastro novo sem CNPJ
$this->p_ddd_telefone_1 = $this->p_ddd_telefone_1 == null ? "" : $this->p_ddd_telefone_1;
$this->p_ddd_telefone_fax = $this->p_ddd_telefone_fax == null ? "" : $this->p_ddd_telefone_fax;
if ($this->ref_idpes) {
$objTemp = new clsPessoaJuridica($this->ref_idpes);
$detalhe = $objTemp->detalhe();
}
// $this->campoOculto( "passo", 4 );
// $this->campoOculto( "sem_cnpj", 0 );
$this->campoOculto("cod_escola", $this->cod_escola);
// text
$this->campoTexto("fantasia", "Escola", $this->fantasia, 30, 255, true);
$this->campoTexto("sigla", "Sigla", $this->sigla, 30, 255, true);
// foreign keys
$nivel = $obj_permissoes->nivel_acesso($this->pessoa_logada);
if ($nivel == 1) {
$cabecalhos[] = "Instituicao";
$objInstituicao = new clsPmieducarInstituicao();
$opcoes = array("" => "Selecione");
$objInstituicao->setOrderby("nm_instituicao ASC");
$lista = $objInstituicao->lista();
if (is_array($lista)) {
foreach ($lista as $linha) {
$opcoes[$linha["cod_instituicao"]] = $linha["nm_instituicao"];
}
}
$this->campoLista("ref_cod_instituicao", "Instituição", $opcoes, $this->ref_cod_instituicao);
} else {
$this->ref_cod_instituicao = $obj_permissoes->getInstituicao($this->pessoa_logada);
if ($this->ref_cod_instituicao) {
$this->campoOculto("ref_cod_instituicao", $this->ref_cod_instituicao);
} else {
die("Usu�rio n�o � do nivel poli-institucional e n�o possui uma institui��o");
}
}
$opcoes = array("" => "Selecione");
if (class_exists("clsPmieducarEscolaRedeEnsino")) {
/*$todas_redes_ensino = "rede_ensino = new Array();\n";
$objTemp = new clsPmieducarEscolaRedeEnsino();
$lista = $objTemp->lista();
if ( is_array( $lista ) && count( $lista ) )
{
foreach ( $lista as $registro )
{
$todas_redes_ensino .= "rede_ensino[rede_ensino.length] = new Array( {$registro["cod_escola_rede_ensino"]}, '{$registro['nm_rede']}', {$registro["ref_cod_instituicao"]} );\n";
}
}
echo "<script>{$todas_redes_ensino}</script>";*/
// EDITAR
$script = "javascript:showExpansivelIframe(520, 120, 'educar_escola_rede_ensino_cad_pop.php');";
if ($this->ref_cod_instituicao) {
$objTemp = new clsPmieducarEscolaRedeEnsino();
$lista = $objTemp->lista(null, null, null, null, null, null, null, null, 1, $this->ref_cod_instituicao);
if (is_array($lista) && count($lista)) {
foreach ($lista as $registro) {
$opcoes["{$registro['cod_escola_rede_ensino']}"] = "{$registro['nm_rede']}";
}
}
$script = "<img id='img_rede_ensino' style='display: \\'\\'' src='imagens/banco_imagens/escreve.gif' style='cursor:hand; cursor:pointer;' border='0' onclick=\"{$script}\">";
} else {
$script = "<img id='img_rede_ensino' style='display: none;' src='imagens/banco_imagens/escreve.gif' style='cursor:hand; cursor:pointer;' border='0' onclick=\"{$script}\">";
}
} else {
echo "<!--\nErro\nClasse clsPmieducarEscolaRedeEnsino nao encontrada\n-->";
$opcoes = array("" => "Erro na geracao");
}
$this->campoLista("ref_cod_escola_rede_ensino", "Rede Ensino", $opcoes, $this->ref_cod_escola_rede_ensino, "", false, "", $script);
$opcoes = array("" => "Selecione");
if (class_exists("clsPmieducarEscolaLocalizacao")) {
//.........这里部分代码省略.........
示例6: Gerar
function Gerar()
{
@session_start();
$this->pessoa_logada = $_SESSION['id_pessoa'];
session_write_close();
$this->titulo = "Calendario Dia - Listagem";
foreach ($_GET as $var => $val) {
// passa todos os valores obtidos no GET para atributos do objeto
$this->{$var} = $val === "" ? null : $val;
}
$obj_permissoes = new clsPermissoes();
$nivel_usuario = $obj_permissoes->nivel_acesso($this->pessoa_logada);
if (!$this->ref_cod_escola) {
$this->ref_cod_escola = $obj_permissoes->getEscola($this->pessoa_logada);
}
if (!$this->ref_cod_instituicao) {
$this->ref_cod_instituicao = $obj_permissoes->getInstituicao($this->pessoa_logada);
}
$this->addCabecalhos(array("Calendario Ano Letivo", "Dia", "Mes", "Calendario Dia Motivo"));
// Filtros de Foreign Keys
/* $opcoes = array( "" => "Selecione" );
if( class_exists( "clsPmieducarCalendarioDiaMotivo" ) )
{
$objTemp = new clsPmieducarCalendarioDiaMotivo();
$lista = $objTemp->lista();
if ( is_array( $lista ) && count( $lista ) )
{
foreach ( $lista as $registro )
{
$opcoes["{$registro['cod_calendario_dia_motivo']}"] = "{$registro['nm_motivo']}";
}
}
}
else
{
echo "<!--\nErro\nClasse clsPmieducarCalendarioDiaMotivo nao encontrada\n-->";
$opcoes = array( "" => "Erro na geracao" );
}
$this->campoLista( "ref_cod_calendario_dia_motivo", "Calendario Dia Motivo", $opcoes, $this->ref_cod_calendario_dia_motivo );
*/
$get_escola = 1;
$obrigatorio = true;
include "include/pmieducar/educar_campo_lista.php";
/* $opcoes = array( "" => "Selecione" );
if( class_exists( "clsPmieducarCalendarioAnoLetivo" ) )
{
$objTemp = new clsPmieducarCalendarioAnoLetivo();
$lista = $objTemp->lista();
if ( is_array( $lista ) && count( $lista ) )
{
foreach ( $lista as $registro )
{
$opcoes["{$registro['cod_calendario_ano_letivo']}"] = "{$registro['ano']}";
}
}
}
else
{
echo "<!--\nErro\nClasse clsPmieducarCalendarioAnoLetivo nao encontrada\n-->";
$opcoes = array( "" => "Erro na geracao" );
}
$this->campoLista( "ref_cod_calendario_ano_letivo", "Calendario Ano Letivo", $opcoes, $this->ref_cod_calendario_ano_letivo );
*/
// Paginador
$this->limite = 20;
$this->offset = $_GET["pagina_{$this->nome}"] ? $_GET["pagina_{$this->nome}"] * $this->limite - $this->limite : 0;
$obj_calendario_dia = new clsPmieducarCalendarioDia();
$obj_calendario_dia->setOrderby("descricao ASC");
$obj_calendario_dia->setLimite($this->limite, $this->offset);
$lista = $obj_calendario_dia->lista($this->ref_cod_calendario_ano_letivo, $this->mes, $this->dia, null, null, $this->ref_cod_calendario_dia_motivo, $this->ref_cod_calendario_atividade, $this->descricao_ini, $this->descricao_fim, null, null, 1, $this->ref_cod_escola);
$total = $obj_calendario_dia->_total;
// monta a lista
if (is_array($lista) && count($lista)) {
foreach ($lista as $registro) {
// pega detalhes de foreign_keys
if (class_exists("clsPmieducarCalendarioDiaMotivo")) {
$obj_ref_cod_calendario_dia_motivo = new clsPmieducarCalendarioDiaMotivo($registro["ref_cod_calendario_dia_motivo"]);
$det_ref_cod_calendario_dia_motivo = $obj_ref_cod_calendario_dia_motivo->detalhe();
$registro["ref_cod_calendario_dia_motivo"] = $det_ref_cod_calendario_dia_motivo["nm_motivo"];
} else {
$registro["ref_cod_calendario_dia_motivo"] = "Erro na geracao";
echo "<!--\nErro\nClasse nao existente: clsPmieducarCalendarioDiaMotivo\n-->";
}
if (class_exists("clsPmieducarCalendarioAnoLetivo")) {
$obj_ref_cod_calendario_ano_letivo = new clsPmieducarCalendarioAnoLetivo($registro["ref_cod_calendario_ano_letivo"]);
$det_ref_cod_calendario_ano_letivo = $obj_ref_cod_calendario_ano_letivo->detalhe();
$registro["ano"] = $det_ref_cod_calendario_ano_letivo["ano"];
} else {
$registro["ref_cod_calendario_ano_letivo"] = "Erro na geracao";
echo "<!--\nErro\nClasse nao existente: clsPmieducarCalendarioAnoLetivo\n-->";
}
$this->addLinhas(array("<a href=\"educar_calendario_dia_cad.php?ref_cod_calendario_ano_letivo={$registro["ref_cod_calendario_ano_letivo"]}&ano={$registro["ano"]}&mes={$registro["mes"]}&dia={$registro["dia"]}\">{$registro["ano"]}</a>", "<a href=\"educar_calendario_dia_cad.php?ref_cod_calendario_ano_letivo={$registro["ref_cod_calendario_ano_letivo"]}&ano={$registro["ano"]}&mes={$registro["mes"]}&dia={$registro["dia"]}\">{$registro["dia"]}</a>", "<a href=\"educar_calendario_dia_cad.php?ref_cod_calendario_ano_letivo={$registro["ref_cod_calendario_ano_letivo"]}&ano={$registro["ano"]}&mes={$registro["mes"]}&dia={$registro["dia"]}\">{$registro["mes"]}</a>", "<a href=\"educar_calendario_dia_cad.php?ref_cod_calendario_ano_letivo={$registro["ref_cod_calendario_ano_letivo"]}&ano={$registro["ano"]}&mes={$registro["mes"]}&dia={$registro["dia"]}\">{$registro["ref_cod_calendario_dia_motivo"]}</a>"));
}
}
$this->addPaginador2("educar_calendario_dia_lst.php", $total, $_GET, $this->nome, $this->limite);
$obj_permissoes = new clsPermissoes();
if ($obj_permissoes->permissao_cadastra(0, $this->pessoa_logada, 0)) {
$this->acao = "go(\"educar_calendario_dia_cad.php\")";
$this->nome_acao = "Novo";
//.........这里部分代码省略.........
示例7: clsPermissoes
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
* Ao incluir este arquivo, adicionar a variável $obrigatorio = true ou $obrigatorio = false para
* definir se os campos são obrigatórios ou não. Adicionar também a variável editar para informar
* se está sendo editados os itens ou não.
*
* Ex.:
* $obrigatorio = true;
* $editar = true;
* include("include/pmieducar/educar_pesquisa_biblioteca_cliente.php");
*
* @author Adriano Erik Weiguert Nagasava
*/
$permissoes = new clsPermissoes();
$privilegio = $permissoes->nivel_acesso($this->pessoa_logada);
$this->campoOculto("ref_cod_instituicao", $permissoes->getInstituicao($this->pessoa_logada));
$this->campoOculto("ref_cod_escola", $permissoes->getEscola($this->pessoa_logada));
if ($editar) {
echo $script = "<script> var editar = false; \n {$series}</script>\n";
} else {
echo $script = "<script> var editar = true; \n {$series}</script>\n";
}
if ($privilegio == 4) {
// foreign keys
$opcoes = array("" => "Selecione");
$opcoes2 = array("" => "Selecione");
if (class_exists("clsPmieducarBiblioteca")) {
$objTemp = new clsPmieducarBiblioteca();
$lista = $objTemp->lista(null, $permissoes->getInstituicao($this->pessoa_logada), $permissoes->getEscola($this->pessoa_logada), null, null, null, null, null, null, null, null, null, 1);
if ($lista) {
$tipos = '';
示例8: clsPmieducarUsuario
$obj_usuario = new clsPmieducarUsuario($this->pessoa_logada);
$det_usuario = $obj_usuario->detalhe();
$this->ref_cod_instituicao = $det_usuario["ref_cod_instituicao"];
if ($nivel_usuario == 4) {
$obj_usuario = new clsPmieducarUsuario($this->pessoa_logada);
$det_usuario = $obj_usuario->detalhe();
$this->ref_cod_escola = $det_usuario["ref_cod_escola"];
if ($get_escola) {
$retorno .= '<td valign="top" class="formmdtd"><span class="form">';
$retorno .= "<input name='ref_cod_escola' id='ref_cod_escola' type='hidden' value='{$this->ref_cod_escola}'>";
$retorno .= '</span>
</td>
</tr>';
}
}
$instituicao = $obj_permissoes->getInstituicao($this->pessoa_logada);
$retorno .= "<input type='hidden' name='ref_cod_instituicao' id='ref_cod_instituicao' value='{$instituicao}'";
}
if ($nivel_usuario == 1 || $nivel_usuario == 2) {
if ($get_escola) {
if (class_exists("clsPmieducarEscola")) {
$opcoes_escola = array("" => "Selecione");
//$todas_escolas = "escola = new Array();\n";
$obj_escola = new clsPmieducarEscola();
$lista = $obj_escola->lista(null, null, null, null, null, null, null, null, null, null, 1);
/*if ( is_array( $lista ) && count( $lista ) )
{
foreach ( $lista as $registro )
{
$todas_escolas .= "escola[escola.length] = new Array( {$registro["cod_escola"]}, '{$registro['nome']}', {$registro["ref_cod_instituicao"]} );\n";
}
示例9: Gerar
function Gerar()
{
$obj_permissoes = new clsPermissoes();
$nivel_usuario = $obj_permissoes->nivel_acesso($this->pessoa_logada);
if ($_POST) {
foreach ($_POST as $key => $value) {
$this->{$key} = $value;
}
}
@session_start();
$this->pessoa_logada = $_SESSION['id_pessoa'];
@session_write_close();
$this->ano = $ano_atual = date("Y");
$this->mes = $mes_atual = date("n");
$this->campoNumero("ano", "Ano", $this->ano, 4, 4, true);
$get_escola = true;
$instituicao_obrigatorio = true;
$escola_obrigatorio = false;
$exibe_nm_escola = true;
$this->ref_cod_escola = $obj_permissoes->getEscola($this->pessoa_logada);
$this->ref_cod_instituicao = $obj_permissoes->getInstituicao($this->pessoa_logada);
include "include/pmieducar/educar_campo_lista.php";
if ($this->get_link) {
$this->campoRotulo("rotulo11", "-", "<a href='{$this->get_link}' target='_blank'>Baixar Relatório</a>");
}
$this->url_cancelar = "educar_index.php";
$this->nome_url_cancelar = "Cancelar";
$this->acao_enviar = 'acao2()';
$this->acao_executa_submit = false;
}
示例10: Gerar
function Gerar()
{
$obj_permissoes = new clsPermissoes();
$nivel_usuario = $obj_permissoes->nivel_acesso($this->pessoa_logada);
if ($_POST) {
foreach ($_POST as $key => $value) {
$this->{$key} = $value;
}
}
@session_start();
$this->pessoa_logada = $_SESSION['id_pessoa'];
@session_write_close();
$this->ano = $ano_atual = date("Y");
$this->mes = $mes_atual = date("n");
/*
$lim = 5;
for($a = date('Y') ; $a < $ano_atual + $lim ; $a++ )
$anos["{$a}"] = "{$a}";
$this->campoLista( "ano", "Ano", $anos, $this->ano, "", false );
*/
$this->campoNumero("ano", "Ano", $this->ano, 4, 4, true);
$this->campoLista("mes", "Mês", $this->meses_do_ano, $this->mes, "", false);
$get_escola = true;
//$get_curso = true;
$obrigatorio = true;
$exibe_nm_escola = true;
// $get_escola_curso = true;
$get_curso = false;
$exibe_campo_lista_curso_escola = false;
$this->ref_cod_escola = $obj_permissoes->getEscola($this->pessoa_logada);
$this->ref_cod_instituicao = $obj_permissoes->getInstituicao($this->pessoa_logada);
include "include/pmieducar/educar_campo_lista.php";
$this->campoRotulo("cursos_", "Cursos", "<div id='cursos'>Selecione uma escola</div>");
if ($nivel_usuario <= 3) {
echo "<script>\n\t\t\t\t\twindow.onload = function(){document.getElementById('ref_cod_escola').onchange = changeCurso};\n\t\t\t\t </script>";
} else {
echo "<script>\n\t\t\t\t\twindow.onload = function(){ changeCurso() };\n\t\t\t\t </script>";
}
if ($this->get_link) {
$this->campoRotulo("rotulo11", "-", "<a href='{$this->get_link}' target='_blank'>Baixar Relatório</a>");
}
$this->url_cancelar = "educar_index.php";
$this->nome_url_cancelar = "Cancelar";
$this->acao_enviar = 'acao2()';
$this->acao_executa_submit = false;
}
示例11: reset
reset($opcoes);
while (list($chave, $texto) = each($opcoes)) {
$retorno .= sprintf('<option id="ref_cod_instituicao_%s" value="%s"', urlencode($chave), urlencode($chave));
if ($chave == $this->ref_cod_instituicao) {
$retorno .= " selected";
}
$retorno .= ">{$texto}</option>";
}
$retorno .= '</select>';
$retorno .= '</span></td></tr>';
}
}
if ($nivel_usuario == 2) {
if ($get_instituicao) {
$obj_per = new clsPermissoes();
$this->ref_cod_instituicao = $obj_per->getInstituicao($this->pessoa_logada);
$retorno .= sprintf('<input type="hidden" id="red_cod_instituicao" value="%s">', $this->ref_cod_instituicao);
}
} elseif ($nivel_usuario != 1) {
$obj_usuario = new clsPmieducarUsuario($this->pessoa_logada);
$det_usuario = $obj_usuario->detalhe();
$this->ref_cod_instituicao = $det_usuario['ref_cod_instituicao'];
if ($nivel_usuario == 4 || $nivel_usuario == 8) {
$obj_usuario = new clsPmieducarUsuario($this->pessoa_logada);
$det_usuario = $obj_usuario->detalhe();
$this->ref_cod_escola = $det_usuario['ref_cod_escola'];
}
}
if ($nivel_usuario == 1 || $nivel_usuario == 2) {
if ($get_escola) {
if (class_exists('clsPmieducarEscola')) {
示例12: clsPermissoes
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
* Ao incluir este arquivo, adicionar a variável $obrigatorio = true ou $obrigatorio = false para
* definir se os campos são obrigatórios ou não. Adicionar também a variável editar para informar
* se está sendo editados os itens ou não.
*
* Ex.:
* $obrigatorio = true;
* $editar = true;
* include("include/pmieducar/educar_pesquisa_curso_serie.php");
*
* @author Adriano Erik Weiguert Nagasava
*/
$permissoes = new clsPermissoes();
$privilegio = $permissoes->nivel_acesso($this->pessoa_logada);
$this->campoOculto("ref_cod_instituicao", $permissoes->getInstituicao($this->pessoa_logada));
$this->campoOculto("ref_cod_escola", $permissoes->getEscola($this->pessoa_logada));
if ($editar) {
echo $script = "<script> var editar = false; \n {$series}</script>\n";
} else {
echo $script = "<script> var editar = true; \n {$series}</script>\n";
}
if ($privilegio == 4) {
$opcoes = array("" => "Selecione");
if (class_exists("clsPmieducarEscolaCurso")) {
$objTemp = new clsPmieducarEscolaCurso();
$lista = $objTemp->lista($permissoes->getEscola($this->pessoa_logada), null, null, null, null, null, null, null, 1);
if ($lista) {
$series = '';
$ESeries = '';
foreach ($lista as $registro) {