本文整理汇总了PHP中clsPmieducarCurso::setOrderby方法的典型用法代码示例。如果您正苦于以下问题:PHP clsPmieducarCurso::setOrderby方法的具体用法?PHP clsPmieducarCurso::setOrderby怎么用?PHP clsPmieducarCurso::setOrderby使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类clsPmieducarCurso
的用法示例。
在下文中一共展示了clsPmieducarCurso::setOrderby方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Gerar
function Gerar()
{
$obj_permissoes = new clsPermissoes();
$nivel_usuario = $obj_permissoes->nivel_acesso($this->pessoa_logada);
$this->campoOculto("serie_origem_old", $this->ref_serie_origem);
$this->campoOculto("serie_destino_old", $this->ref_serie_destino);
// foreign keys
if ($nivel_usuario == 1) {
// echo "<pre>"; print_r($GLOBALS); die();
$GLOBALS["nivel_usuario_fora"] = 1;
$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 {
$obj_usuario = new clsPmieducarUsuario($this->pessoa_logada);
$obj_usuario_det = $obj_usuario->detalhe();
$this->ref_cod_instituicao = $obj_usuario_det["ref_cod_instituicao"];
}
$opcoes = array("" => "Selecione");
$opcoes_ = array("" => "Selecione");
if (class_exists("clsPmieducarCurso")) {
/*$todos_cursos = "curso = new Array();\n";
$objTemp = new clsPmieducarCurso();
$objTemp->setOrderby("nm_curso");
$lista = $objTemp->lista( null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,1 );
if ( is_array( $lista ) && count( $lista ) )
{
foreach ( $lista as $registro )
{
$todos_cursos .= "curso[curso.length] = new Array({$registro["cod_curso"]},'{$registro["nm_curso"]}', {$registro["ref_cod_instituicao"]});\n";
}
}
echo "<script>{$todos_cursos}</script>";*/
// EDITAR
if ($this->ref_cod_instituicao) {
$objTemp = new clsPmieducarCurso();
$objTemp->setOrderby("nm_curso");
$lista = $objTemp->lista(null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 1, null, $this->ref_cod_instituicao);
if (is_array($lista) && count($lista)) {
foreach ($lista as $registro) {
$opcoes[$registro["cod_curso"]] = $registro["nm_curso"];
$opcoes_[$registro["cod_curso"]] = $registro["nm_curso"];
}
}
}
} else {
echo "<!--\nErro\nClasse clsPmieducarCurso não encontrada\n-->";
$opcoes = array("" => "Erro na geração");
}
$this->campoLista("ref_curso_origem", "Curso Origem", $opcoes, $this->ref_curso_origem, "", true);
$this->campoLista("ref_curso_destino", " Curso Destino", $opcoes_, $this->ref_curso_destino);
// primary keys
$opcoes = array("" => "Selecione");
$opcoes_ = array("" => "Selecione");
if (class_exists("clsPmieducarSerie")) {
/*$todas_series = "serie = new Array();\n";
$objTemp = new clsPmieducarSerie();
$objTemp->setOrderby( "nm_serie ASC" );
$lista = $objTemp->lista( null,null,null,null,null,null,null,null,null,null,null,null,1 );
if ( is_array( $lista ) && count( $lista ) )
{
foreach ( $lista as $registro )
{
$todas_series .= "serie[serie.length] = new Array({$registro["cod_serie"]},'{$registro["nm_serie"]}', {$registro["ref_cod_curso"]});\n";
}
}
echo "<script>{$todas_series}</script>";*/
if ($this->ref_curso_origem) {
$objTemp = new clsPmieducarSerie();
$objTemp->setOrderby("nm_serie ASC");
$lista = $objTemp->lista(null, null, null, $this->ref_curso_origem, null, null, null, null, null, null, null, null, 1);
if (is_array($lista) && count($lista)) {
foreach ($lista as $registro) {
$opcoes[$registro["cod_serie"]] = $registro["nm_serie"];
}
}
}
if ($this->ref_curso_destino) {
$objTemp = new clsPmieducarSerie();
$objTemp->setOrderby("nm_serie ASC");
$lista = $objTemp->lista(null, null, null, $this->ref_curso_destino, null, null, null, null, null, null, null, null, 1);
if (is_array($lista) && count($lista)) {
foreach ($lista as $registro) {
$opcoes_[$registro["cod_serie"]] = $registro["nm_serie"];
}
}
}
} else {
echo "<!--\nErro\nClasse clsPmieducarSerie não encontrada\n-->";
$opcoes = array("" => "Erro na geracao");
$opcoes_ = array("" => "Erro na geracao");
}
$this->campoLista("ref_serie_origem", "Série Origem", $opcoes, $this->ref_serie_origem, null, true);
//.........这里部分代码省略.........
示例2: Gerar
function Gerar()
{
@session_start();
$this->pessoa_logada = $_SESSION['id_pessoa'];
session_write_close();
$this->titulo = 'Curso - Listagem';
// passa todos os valores obtidos no GET para atributos do objeto
foreach ($_GET as $var => $val) {
$this->{$var} = $val === '' ? NULL : $val;
}
$this->addBanner('imagens/nvp_top_intranet.jpg', 'imagens/nvp_vert_intranet.jpg', 'Intranet');
$lista_busca = array('Curso', 'Nível Ensino', 'Tipo Ensino');
$obj_permissoes = new clsPermissoes();
$nivel_usuario = $obj_permissoes->nivel_acesso($this->pessoa_logada);
if ($nivel_usuario == 1) {
$lista_busca[] = 'Instituição';
}
$this->addCabecalhos($lista_busca);
include 'include/pmieducar/educar_campo_lista.php';
// outros Filtros
$this->campoTexto('nm_curso', 'Curso', $this->nm_curso, 30, 255, FALSE);
// outros de Foreign Keys
$opcoes = array('' => 'Selecione');
$todos_niveis_ensino = "nivel_ensino = new Array();\n";
$objTemp = new clsPmieducarNivelEnsino();
$lista = $objTemp->lista(NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1);
if (is_array($lista) && count($lista)) {
foreach ($lista as $registro) {
$todos_niveis_ensino .= "nivel_ensino[nivel_ensino.length] = new Array({$registro["cod_nivel_ensino"]},'{$registro["nm_nivel"]}', {$registro["ref_cod_instituicao"]});\n";
}
}
echo "<script>{$todos_niveis_ensino}</script>";
if ($this->ref_cod_instituicao) {
$objTemp = new clsPmieducarNivelEnsino();
$lista = $objTemp->lista(NULL, 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_nivel_ensino']] = $registro['nm_nivel'];
}
}
}
$this->campoLista('ref_cod_nivel_ensino', 'Nível Ensino', $opcoes, $this->ref_cod_nivel_ensino, NULL, NULL, NULL, NULL, NULL, FALSE);
$opcoes = array('' => 'Selecione');
$todos_tipos_ensino = "tipo_ensino = new Array();\n";
$objTemp = new clsPmieducarTipoEnsino();
$objTemp->setOrderby('nm_tipo');
$lista = $objTemp->lista(NULL, NULL, NULL, NULL, NULL, NULL, 1);
if (is_array($lista) && count($lista)) {
foreach ($lista as $registro) {
$todos_tipos_ensino .= "tipo_ensino[tipo_ensino.length] = new Array({$registro["cod_tipo_ensino"]},'{$registro["nm_tipo"]}', {$registro["ref_cod_instituicao"]});\n";
}
}
echo "<script>{$todos_tipos_ensino}</script>";
if ($this->ref_cod_instituicao) {
$objTemp = new clsPmieducarTipoEnsino();
$objTemp->setOrderby("nm_tipo");
$lista = $objTemp->lista(NULL, NULL, NULL, NULL, NULL, NULL, 1, $this->ref_cod_instituicao);
if (is_array($lista) && count($lista)) {
foreach ($lista as $registro) {
$opcoes["{$registro['cod_tipo_ensino']}"] = $registro['nm_tipo'];
}
}
}
$this->campoLista('ref_cod_tipo_ensino', 'Tipo Ensino', $opcoes, $this->ref_cod_tipo_ensino, '', FALSE, '', '', '', FALSE);
// Paginador
$this->limite = 20;
$this->offset = $_GET["pagina_{$this->nome}"] ? $_GET["pagina_{$this->nome}"] * $this->limite - $this->limite : 0;
$obj_curso = new clsPmieducarCurso();
$obj_curso->setOrderby('nm_curso ASC');
$obj_curso->setLimite($this->limite, $this->offset);
$lista = $obj_curso->lista(NULL, NULL, NULL, $this->ref_cod_nivel_ensino, $this->ref_cod_tipo_ensino, NULL, $this->nm_curso, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, $this->ref_cod_instituicao);
$total = $obj_curso->_total;
// monta a lista
if (is_array($lista) && count($lista)) {
foreach ($lista as $registro) {
$obj_ref_cod_nivel_ensino = new clsPmieducarNivelEnsino($registro['ref_cod_nivel_ensino']);
$det_ref_cod_nivel_ensino = $obj_ref_cod_nivel_ensino->detalhe();
$registro['ref_cod_nivel_ensino'] = $det_ref_cod_nivel_ensino['nm_nivel'];
$obj_ref_cod_tipo_ensino = new clsPmieducarTipoEnsino($registro['ref_cod_tipo_ensino']);
$det_ref_cod_tipo_ensino = $obj_ref_cod_tipo_ensino->detalhe();
$registro['ref_cod_tipo_ensino'] = $det_ref_cod_tipo_ensino['nm_tipo'];
$obj_cod_instituicao = new clsPmieducarInstituicao($registro['ref_cod_instituicao']);
$obj_cod_instituicao_det = $obj_cod_instituicao->detalhe();
$registro['ref_cod_instituicao'] = $obj_cod_instituicao_det['nm_instituicao'];
$lista_busca = array("<a href=\"educar_curso_det.php?cod_curso={$registro["cod_curso"]}\">{$registro["nm_curso"]}</a>", "<a href=\"educar_curso_det.php?cod_curso={$registro["cod_curso"]}\">{$registro["ref_cod_nivel_ensino"]}</a>", "<a href=\"educar_curso_det.php?cod_curso={$registro["cod_curso"]}\">{$registro["ref_cod_tipo_ensino"]}</a>");
if ($nivel_usuario == 1) {
$lista_busca[] = "<a href=\"educar_curso_det.php?cod_curso={$registro["cod_curso"]}\">{$registro["ref_cod_instituicao"]}</a>";
}
$this->addLinhas($lista_busca);
}
}
$this->addPaginador2("educar_curso_lst.php", $total, $_GET, $this->nome, $this->limite);
$obj_permissoes = new clsPermissoes();
if ($obj_permissoes->permissao_cadastra(566, $this->pessoa_logada, 3)) {
$this->acao = "go(\"educar_curso_cad.php\")";
$this->nome_acao = "Novo";
}
$this->largura = "100%";
$localizacao = new LocalizacaoSistema();
$localizacao->entradaCaminhos(array($_SERVER['SERVER_NAME'] . "/intranet" => "Início", "educar_index.php" => "i-Educar - Escola", "" => "Listagem de cursos"));
//.........这里部分代码省略.........
示例3: array
if ($get_curso) {
$opcoes_curso = array("" => "Selecione");
// EDITAR
if ($this->ref_cod_escola) {
$obj_escola_curso = new clsPmieducarEscolaCurso();
$lst_escola_curso = $obj_escola_curso->lista($this->ref_cod_escola, null, null, null, null, null, null, null, 1);
if (is_array($lst_escola_curso) && count($lst_escola_curso)) {
foreach ($lst_escola_curso as $escola_curso) {
$opcoes_curso["{$escola_curso["ref_cod_curso"]}"] = $escola_curso['nm_curso'];
}
}
} else {
if ($this->ref_cod_instituicao) {
$opcoes_curso = array("" => "Selecione");
$obj_curso = new clsPmieducarCurso();
$obj_curso->setOrderby("nm_curso ASC");
if ($sem_padrao) {
$lista = $obj_curso->lista(null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 1, null, $this->ref_cod_instituicao, 0);
} else {
$lista = $obj_curso->lista(null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 1, null, $this->ref_cod_instituicao);
}
if (is_array($lista) && count($lista)) {
foreach ($lista as $registro) {
$opcoes_curso["{$registro['cod_curso']}"] = "{$registro['nm_curso']}";
}
}
}
}
$this->campoLista("ref_cod_curso", "Curso", $opcoes_curso, $this->ref_cod_curso, null, null, null, null, $curso_desabilitado, $curso_obrigatorio);
if ($get_semestre) {
$this->campoRotulo("semestres", "Semestre", "<div id='div_semestre'>Selecione um Curso</div>");
示例4: 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")) {
//.........这里部分代码省略.........
示例5: Gerar
function Gerar()
{
@session_start();
$this->pessoa_logada = $_SESSION['id_pessoa'];
session_write_close();
$this->titulo = "Sequência Enturmação - Listagem";
foreach ($_GET as $var => $val) {
// passa todos os valores obtidos no GET para atributos do objeto
$this->{$var} = $val === "" ? null : $val;
}
$lista_busca = array("Curso Origem", "Série Origem", "Curso Destino", "Série Destino");
$obj_permissoes = new clsPermissoes();
$nivel_usuario = $obj_permissoes->nivel_acesso($this->pessoa_logada);
if ($nivel_usuario == 1) {
$lista_busca[] = "Instituição";
}
$this->addCabecalhos($lista_busca);
// Filtros de Foreign Keys
if ($nivel_usuario == 1) {
$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, "", null, null, null, null, false);
} else {
$obj_usuario = new clsPmieducarUsuario($this->pessoa_logada);
$obj_usuario_det = $obj_usuario->detalhe();
$this->ref_cod_instituicao = $obj_usuario_det["ref_cod_instituicao"];
}
$opcoes = array("" => "Selecione");
$opcoes_ = array("" => "Selecione");
if (class_exists("clsPmieducarCurso")) {
/*$todos_cursos = "curso = new Array();\n";
$objTemp = new clsPmieducarCurso();
$objTemp->setOrderby("nm_curso");
$lista = $objTemp->lista( null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,1 );
if ( is_array( $lista ) && count( $lista ) )
{
foreach ( $lista as $registro )
{
$todos_cursos .= "curso[curso.length] = new Array({$registro["cod_curso"]},'{$registro["nm_curso"]}', {$registro["ref_cod_instituicao"]});\n";
}
}
echo "<script>{$todos_cursos}</script>";*/
// EDITAR
if ($this->ref_cod_instituicao) {
$objTemp = new clsPmieducarCurso();
$objTemp->setOrderby("nm_curso");
$lista = $objTemp->lista(null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 1, null, $this->ref_cod_instituicao);
if (is_array($lista) && count($lista)) {
foreach ($lista as $registro) {
$opcoes[$registro["cod_curso"]] = $registro["nm_curso"];
$opcoes_[$registro["cod_curso"]] = $registro["nm_curso"];
}
}
}
} else {
echo "<!--\nErro\nClasse clsPmieducarCurso não encontrada\n-->";
$opcoes = array("" => "Erro na geração");
}
$this->campoLista("ref_curso_origem", "Curso Origem", $opcoes, $this->ref_curso_origem, "", true, "", "", false, false);
$this->campoLista("ref_curso_destino", " Curso Destino", $opcoes_, $this->ref_curso_destino, "", false, "", "", false, false);
// primary keys
$opcoes = array("" => "Selecione");
$opcoes_ = array("" => "Selecione");
if (class_exists("clsPmieducarSerie")) {
/*$todas_series = "serie = new Array();\n";
$objTemp = new clsPmieducarSerie();
$lista = $objTemp->lista( null,null,null,null,null,null,null,null,null,null,null,null,1 );
if ( is_array( $lista ) && count( $lista ) )
{
foreach ( $lista as $registro )
{
$todas_series .= "serie[serie.length] = new Array({$registro["cod_serie"]},'{$registro["nm_serie"]}', {$registro["ref_cod_curso"]});\n";
}
}
echo "<script>{$todas_series}</script>";*/
if ($this->ref_curso_origem) {
$objTemp = new clsPmieducarSerie();
$lista = $objTemp->lista(null, null, null, $this->ref_curso_origem, null, null, null, null, null, null, null, null, 1);
if (is_array($lista) && count($lista)) {
foreach ($lista as $registro) {
$opcoes[$registro["cod_serie"]] = $registro["nm_serie"];
}
}
}
if ($this->ref_curso_destino) {
$objTemp = new clsPmieducarSerie();
$lista = $objTemp->lista(null, null, null, $this->ref_curso_destino, null, null, null, null, null, null, null, null, 1);
if (is_array($lista) && count($lista)) {
foreach ($lista as $registro) {
$opcoes_[$registro["cod_serie"]] = $registro["nm_serie"];
}
}
}
//.........这里部分代码省略.........
示例6: renderHTML
function renderHTML()
{
if ($_POST) {
foreach ($_POST as $key => $value) {
$this->{$key} = $value;
}
}
if ($this->ref_ref_cod_serie) {
$this->ref_cod_serie = $this->ref_ref_cod_serie;
}
if ($this->ref_cod_escola) {
$obj_escola = new clsPmieducarEscola($this->ref_cod_escola);
$det_escola = $obj_escola->detalhe();
$this->nm_escola = $det_escola['nome'];
}
$obj_instituicao = new clsPmieducarInstituicao($this->ref_cod_instituicao);
$det_instituicao = $obj_instituicao->detalhe();
$this->nm_instituicao = $det_instituicao['nm_instituicao'];
$fonte = 'arial';
$corTexto = '#000000';
$obj_curso = new clsPmieducarCurso();
$obj_curso->setOrderby('nm_curso');
$lst_curso = $obj_curso->lista($this->ref_cod_curso, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, $this->ref_cod_instituicao);
if ($lst_curso) {
foreach ($lst_curso as $curso) {
$obj_serie = new clsPmieducarSerie();
$obj_serie->setOrderby('nm_serie');
$lst_serie = $obj_serie->lista($this->ref_cod_serie, NULL, NULL, $curso['cod_curso'], NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, $this->ref_cod_instituicao, NULL, NULL, NULL, $this->ref_cod_escola);
$quadro_horario = 0;
if ($lst_serie) {
foreach ($lst_serie as $serie) {
$obj_turma = new clsPmieducarTurma();
$obj_turma->setOrderby('nm_turma');
$lst_turma = $obj_turma->lista($this->ref_cod_turma, NULL, NULL, $serie['cod_serie'], $this->ref_cod_escola, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, $curso['cod_curso'], $this->ref_cod_instituicao);
if ($lst_turma) {
foreach ($lst_turma as $turma) {
$obj_quadro = new clsPmieducarQuadroHorario(NULL, NULL, NULL, $turma['cod_turma'], NULL, NULL, 1);
$det_quadro = $obj_quadro->detalhe();
if ($det_quadro) {
if (!$this->pdf) {
$this->pdf = new clsPDF('Quadro Horarios', 'Quadro Horarios', 'A4', '', FALSE, FALSE);
}
if ($quadro_horario % 3 == 0) {
$this->page_y = 15;
$this->pdf->OpenPage();
$this->addCabecalho();
$quadro_horario = 0;
}
$this->pdf->escreve_relativo($turma['nm_turma'] . ' - ' . $serie['nm_serie'], 20, $this->page_y - 7, 550, 20, $fonte, 11, $corTexto, 'center');
$this->page_y += 10;
$this->pdf->quadrado_relativo(35, $this->page_y, 525, 20, 0.3, '#777777', '#777777');
$inicio_x = 35;
for ($dia_semana = 1; $dia_semana <= 7; $dia_semana++) {
$this->pdf->linha_relativa($inicio_x, $this->page_y, 0, 20);
$this->pdf->escreve_relativo($this->array_dias_semana[$dia_semana], $inicio_x, $this->page_y + 3, 75, 20, $fonte, 11, $corTexto, 'center');
$inicio_x += 75;
}
$this->page_y += 20;
$inicio_y = $this->page_y;
$inicio_x = 35;
$this->pdf->quadrado_relativo($inicio_x, $this->page_y, 525, 200, 0.3);
for ($dia_semana = 1; $dia_semana <= 7; $dia_semana++) {
$obj_horarios = new clsPmieducarQuadroHorarioHorarios();
$resultado = $obj_horarios->retornaHorario($this->ref_cod_instituicao, $this->ref_cod_escola, $serie['cod_serie'], $turma['cod_turma'], $dia_semana);
if (is_array($resultado)) {
foreach ($resultado as $registro) {
$this->pdf->quadrado_relativo($inicio_x, $this->page_y, 75, 50, 0.3);
$componenteMapper = new ComponenteCurricular_Model_ComponenteDataMapper();
$componente = $componenteMapper->find($registro['ref_cod_disciplina']);
$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 = sprintf("%s - %s\n%s\n%s", substr($registro['hora_inicial'], 0, 5), substr($registro["hora_final"], 0, 5), $componente->abreviatura, $det_servidor['nome']);
$this->pdf->escreve_relativo($texto, $inicio_x, $this->page_y + 12, 75, 50, $fonte, 10, $corTexto, 'center');
$this->page_y += 50;
}
}
$inicio_x += 75;
$this->page_y = $inicio_y;
}
$this->page_y += 220;
}
$quadro_horario++;
}
}
}
}
}
}
if ($this->pdf) {
$this->pdf->CloseFile();
$this->get_link = $this->pdf->GetLink();
} else {
echo '
<script>
alert("A(s) turma(s) não possui(em) quadro de horário(s).");
window.parent.fechaExpansivel("div_dinamico_" + (window.parent.DOM_divs.length-1));
</script>';
return;
}
//.........这里部分代码省略.........
示例7: Gerar
function Gerar()
{
@session_start();
$this->__pessoa_logada = $_SESSION['id_pessoa'];
session_write_close();
$this->__titulo = "Curso - 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("Curso", "Nivel Ensino", "Tipo Ensino", "Instituicão"));
$this->campoTexto("nm_curso", "Curso", $this->nm_curso, 30, 255, false);
$opcoes = array("" => "Selecione");
if (class_exists("clsPmieducarNivelEnsino")) {
$objTemp = new clsPmieducarNivelEnsino();
$lista = $objTemp->lista();
if (is_array($lista) && count($lista)) {
foreach ($lista as $registro) {
$opcoes["{$registro['cod_nivel_ensino']}"] = "{$registro['nm_nivel']}";
}
}
} else {
echo "<!--\nErro\nClasse clsPmieducarNivelEnsino nao encontrada\n-->";
$opcoes = array("" => "Erro na geracao");
}
$this->campoLista("ref_cod_nivel_ensino", "Nivel Ensino", $opcoes, $this->ref_cod_nivel_ensino);
$opcoes = array("" => "Selecione");
if (class_exists("clsPmieducarTipoEnsino")) {
$objTemp = new clsPmieducarTipoEnsino();
$lista = $objTemp->lista();
if (is_array($lista) && count($lista)) {
foreach ($lista as $registro) {
$opcoes["{$registro['cod_tipo_ensino']}"] = "{$registro['nm_ensino']}";
}
}
} else {
echo "<!--\nErro\nClasse clsPmieducarTipoAvaliacao nao encontrada\n-->";
$opcoes = array("" => "Erro na geracao");
}
$this->campoLista("ref_cod_tipo_ensino", "Tipo Ensino", $opcoes, $this->ref_cod_tipo_ensino);
// Paginador
$this->__limite = 20;
$this->__offset = $_GET["pagina_{$this->nome}"] ? $_GET["pagina_{$this->nome}"] * $this->__limite - $this->__limite : 0;
$obj_curso = new clsPmieducarCurso();
$obj_curso->setOrderby("nm_curso ASC");
$obj_curso->setLimite($this->__limite, $this->__offset);
$lista = $obj_curso->lista(null, null, $this->ref_cod_nivel_ensino, $this->ref_cod_tipo_ensino, null, $this->nm_curso, null, null, null, null, null, null, null, null, null, null, null, null, null, 1, null, null, null, null);
$total = $obj_curso->_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"]);
if (class_exists("clsPmieducarNivelEnsino")) {
$obj_ref_cod_nivel_ensino = new clsPmieducarNivelEnsino($registro["ref_cod_nivel_ensino"]);
$det_ref_cod_nivel_ensino = $obj_ref_cod_nivel_ensino->detalhe();
$registro["ref_cod_nivel_ensino"] = $det_ref_cod_nivel_ensino["nm_nivel"];
} else {
$registro["ref_cod_nivel_ensino"] = "Erro na geracao";
echo "<!--\nErro\nClasse nao existente: clsPmieducarNivelEnsino\n-->";
}
if (class_exists("clsPmieducarTipoEnsino")) {
$obj_ref_cod_tipo_ensino = new clsPmieducarTipoEnsino($registro["ref_cod_tipo_ensino"]);
$det_ref_cod_tipo_ensino = $obj_ref_cod_tipo_ensino->detalhe();
$registro["ref_cod_tipo_ensino"] = $det_ref_cod_tipo_ensino["nm_tipo"];
} else {
$registro["ref_cod_tipo_ensino"] = "Erro na geracao";
echo "<!--\nErro\nClasse nao existente: clsPmieducarTipoEnsino\n-->";
}
if (class_exists("clsPmieducarInstituicao")) {
$obj_ref_cod_instituicao = new clsPmieducarInstituicao($registro["ref_cod_instituicao"]);
$det_ref_cod_instituicao = $obj_ref_cod_instituicao->detalhe();
$registro["ref_cod_instituicao"] = $det_ref_cod_instituicao["nm_instituicao"];
} else {
$registro["ref_cod_instituicao"] = "Erro na geracao";
echo "<!--\nErro\nClasse nao existente: clsPmieducarInstuicao\n-->";
}
$this->addLinhas(array("<a href=\"educar_curso_det.php?cod_curso={$registro["cod_curso"]}\">{$registro["nm_curso"]}</a>", "<a href=\"educar_curso_det.php?cod_curso={$registro["cod_curso"]}\">{$registro["ref_cod_nivel_ensino"]}</a>", "<a href=\"educar_curso_det.php?cod_curso={$registro["cod_curso"]}\">{$registro["ref_cod_tipo_ensino"]}</a>", "<a href=\"educar_curso_det.php?cod_curso={$registro["cod_curso"]}\">{$registro["ref_cod_instituicao"]}</a>"));
}
}
$this->addPaginador2("educar_curso_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_curso_cad.php\")";
$this->nome_acao = "Novo";
}
$this->largura = "100%";
}
示例8: Gerar
function Gerar()
{
$this->campoOculto('ref_cod_instituicao', $this->ref_cod_instituicao);
$opcoes = $opcoes_curso = array('' => 'Selecione');
$obj_cursos = new clsPmieducarCurso();
$obj_cursos->setOrderby('nm_curso');
$lst_cursos = $obj_cursos->lista(NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, $this->ref_cod_instituicao);
if ($lst_cursos) {
foreach ($lst_cursos as $curso) {
$opcoes_curso[$curso['cod_curso']] = $curso['nm_curso'];
}
}
$obj_disciplina = new clsPmieducarDisciplina();
$obj_disciplina->setOrderby('nm_disciplina');
$lst_opcoes = array();
$arr_valores = array();
if ($this->cursos_disciplina) {
foreach ($this->cursos_disciplina as $curso => $disciplinas) {
if ($disciplinas) {
foreach ($disciplinas as $disciplina) {
$arr_valores[] = array($curso, $disciplina);
}
}
}
}
if ($this->ref_cod_curso) {
foreach ($this->ref_cod_curso as $curso) {
$lst_disciplinas = $obj_disciplina->lista(NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, $curso, $this->ref_cod_instituicao);
$componenteAnoDataMapper = new ComponenteCurricular_Model_AnoEscolarDataMapper();
$componentes = $componenteAnoDataMapper->findComponentePorCurso($curso);
$opcoes_disc = array();
foreach ($componentes as $componente) {
$opcoes_disc[$componente->id] = $componente->nome;
}
$lst_opcoes[] = array($opcoes_curso, $opcoes_disc);
}
}
$this->campoTabelaInicio('funcao', 'Componentes Curriculares', array('Curso', 'Componente Curricular'), $arr_valores, '', $lst_opcoes);
// Cursos
$this->campoLista('ref_cod_curso', 'Curso', $opcoes_curso, $this->ref_cod_curso, 'trocaCurso(this)', '', '', '');
// Disciplinas
$this->campoLista('ref_cod_disciplina', 'Componente Curricular', $opcoes, $this->ref_cod_disciplina, '', '', '', '');
$this->campoTabelaFim();
}
示例9: renderHTML
function renderHTML()
{
if ($_POST) {
foreach ($_POST as $key => $value) {
$this->{$key} = $value;
}
}
@session_start();
$this->pessoa_logada = $_SESSION['id_pessoa'];
@session_write_close();
if ($this->ref_ref_cod_serie) {
$this->ref_cod_serie = $this->ref_ref_cod_serie;
}
$fonte = 'arial';
$corTexto = '#000000';
if ($this->escola_sem_avaliacao == 1) {
$this->escola_sem_avaliacao = true;
} elseif ($this->escola_sem_avaliacao == 2) {
$this->escola_sem_avaliacao = false;
} else {
$this->escola_sem_avaliacao = null;
}
$obj_escola_instituicao = new clsPmieducarEscola();
$lst_escola_instituicao = $obj_escola_instituicao->lista($this->ref_cod_escola, null, null, $this->ref_cod_instituicao, null, null, null, null, null, null, 1, null, $this->escola_sem_avaliacao);
$this->pdf = new clsPDF("Alunos Matriculados - Sintético - {$this->ano}", "Alunos Matriculados - Sintético", "A4", "", false, false);
if ($this->is_padrao || $this->ano == 2007) {
$this->semestre = null;
}
if (is_array($lst_escola_instituicao) && count($lst_escola_instituicao)) {
foreach ($lst_escola_instituicao as $escola) {
$page_open = false;
$this->ref_cod_escola = $escola['cod_escola'];
if ($this->ref_cod_escola) {
$obj_escola = new clsPmieducarEscola($this->ref_cod_escola);
$det_escola = $obj_escola->detalhe();
$this->nm_escola = $det_escola['nome'];
$obj_instituicao = new clsPmieducarInstituicao($this->ref_cod_instituicao);
$det_instituicao = $obj_instituicao->detalhe();
$this->nm_instituicao = $det_instituicao['nm_instituicao'];
if ($det_escola['ref_idpes']) {
$obj_endereco_escola = new clsEndereco($det_escola['ref_idpes']);
$det_enderedo_escola = $obj_endereco_escola->detalhe();
$this->nm_localidade = $this->nm_municipio = $det_enderedo_escola['cidade'];
if (!$det_enderedo_escola) {
$obj_endereco_externo_escola = new clsEnderecoExterno($det_escola['ref_idpes']);
$det_enderedo_externo_escola = $obj_endereco_externo_escola->detalhe();
$this->nm_localidade = $this->nm_municipio = $det_enderedo_externo_escola['cidade'];
}
} else {
$obj_escola_complemento = new clsPmieducarEscolaComplemento($this->ref_cod_escola);
$det_escola_complemento = $obj_escola_complemento->detalhe();
$this->nm_localidade = $this->nm_municipio = $det_escola_complemento['municipio'];
}
}
$total_geral_escola_nao_enturmado_feminino = 0;
$total_geral_escola_nao_enturmado_masculino = 0;
$total_geral_escola_enturmado_feminino = 0;
$total_geral_escola_enturmado_masculino = 0;
$obj_cursos = new clsPmieducarCurso();
$obj_cursos->setOrderby("cod_curso asc");
$lst_cursos = $obj_cursos->lista($this->ref_cod_curso, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 1, null, $this->ref_cod_instituicao);
if ($lst_cursos) {
foreach ($lst_cursos as $curso) {
$obj_serie_curso = new clsPmieducarSerie();
$obj_serie_curso->setOrderby('etapa_curso asc');
$lst_serie_curso = $obj_serie_curso->lista($this->ref_cod_serie, null, null, $curso['cod_curso'], null, null, null, null, null, null, null, null, 1, $this->ref_cod_instituicao, null, null, null, $this->ref_cod_escola);
$existe_matriculas = false;
if ($lst_serie_curso) {
$total = 0;
foreach ($lst_serie_curso as $key_serie => $serie) {
$obj_turmas = new clsPmieducarTurma();
$lst_turmas = $obj_turmas->lista(null, null, null, $serie['cod_serie'], $escola['cod_escola'], null, null, null, null, null, null, null, null, null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, true);
if (!$lst_turmas) {
$obj_turmas = new clsPmieducarTurma();
$lst_turmas = $obj_turmas->lista(null, null, null, null, null, null, null, null, null, null, null, null, null, null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, $escola['cod_escola'], $serie['cod_serie']);
}
if ($lst_turmas) {
if (!$page_open) {
$x_quadrado = 30;
$this->page_y = 80;
$altura_caixa = 20;
$this->pdf->OpenPage();
$this->addCabecalho();
$this->addCabecalho2();
$page_open = true;
}
$existe_matriculas = true;
$total_enturmados_turma_masculino = 0;
$total_enturmados_turma_feminino = 0;
$total_nao_enturmados_turma_masculino = 0;
$total_nao_enturmados_turma_feminino = 0;
foreach ($lst_turmas as $key_turma => $turma) {
if ($turma['hora_inicial']) {
if ($turma['hora_inicial'] <= '12:00') {
$turno = 'Matutino';
} elseif ($turma['hora_inicial'] > '12:00' && $turma['hora_inicial'] <= '18:00') {
$turno = 'Vespert.';
} else {
$turno = 'Noturno';
}
//.........这里部分代码省略.........
示例10: Gerar
function Gerar()
{
$this->campoOculto('ref_cod_instituicao', $this->ref_cod_instituicao);
$opcoes = $opcoes_curso = array('' => 'Selecione');
$obj_cursos = new clsPmieducarCurso();
$obj_cursos->setOrderby('nm_curso');
$lst_cursos = $obj_cursos->lista(NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, $this->ref_cod_instituicao);
if ($lst_cursos) {
foreach ($lst_cursos as $curso) {
$opcoes_curso[$curso['cod_curso']] = $curso['nm_curso'];
}
}
$arr_valores = array();
if ($this->cursos_servidor) {
foreach ($this->cursos_servidor as $curso) {
$arr_valores[] = array($curso);
}
}
$this->campoTabelaInicio('cursos_ministra', 'Cursos Ministrados', array('Curso'), $arr_valores, '');
$this->campoLista('ref_cod_curso', 'Curso', $opcoes_curso, $this->ref_cod_curso, '', '', '', '');
$this->campoTabelaFim();
}