本文整理汇总了PHP中clsPmieducarCurso::excluir方法的典型用法代码示例。如果您正苦于以下问题:PHP clsPmieducarCurso::excluir方法的具体用法?PHP clsPmieducarCurso::excluir怎么用?PHP clsPmieducarCurso::excluir使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类clsPmieducarCurso
的用法示例。
在下文中一共展示了clsPmieducarCurso::excluir方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Excluir
function Excluir()
{
@session_start();
$this->pessoa_logada = $_SESSION['id_pessoa'];
@session_write_close();
/*$obj_permissoes = new clsPermissoes();
$obj_permissoes->permissao_excluir( 0, $this->pessoa_logada, 0, "educar_curso_lst.php" );
*/
$obj = new clsPmieducarCurso($this->cod_curso, $this->pessoa_logada, $this->ref_cod_tipo_regime, $this->ref_cod_nivel_ensino, $this->ref_cod_tipo_ensino, $this->ref_cod_tipo_avaliacao, $this->nm_curso, $this->sgl_curso, $this->qtd_etapas, $this->frequencia_minima, $this->media, $this->media_exame, $this->falta_ch_globalizada, $this->carga_horaria, $this->ato_poder_publico, $this->edicao_final, $this->objetivo_curso, $this->publico_alvo, $this->data_cadastro, $this->data_exclusao, 0, $this->pessoa_logada, $this->ref_cod_instituicao, $this->padrao_ano_escolar, $this->hora_falta);
$excluiu = $obj->excluir();
if ($excluiu) {
$this->mensagem .= "Exclusão efetuada com sucesso.<br>";
header("Location: educar_curso_lst.php");
die;
return true;
}
$this->mensagem = "Exclusão não realizada.<br>";
echo "<!--\nErro ao excluir clsPmieducarCurso\nvalores obrigatorios\nif( is_numeric( {$this->cod_curso} ) && is_numeric( {$this->ref_usuario_exc} ) )\n-->";
return false;
}
示例2: Excluir
function Excluir()
{
@session_start();
$this->pessoa_logada = $_SESSION['id_pessoa'];
@session_write_close();
$obj = new clsPmieducarCurso($this->cod_curso, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, $this->pessoa_logada);
$excluiu = $obj->excluir();
if ($excluiu) {
$this->mensagem .= "Exclusão efetuada com sucesso.<br>";
header("Location: educar_curso_lst.php");
die;
}
$this->mensagem = "Exclusão não realizada.<br>";
echo "<!--\nErro ao excluir clsPmieducarCurso\nvalores obrigatórios\nif( is_numeric( {$this->cod_curso} ) && is_numeric( {$this->pessoa_logada} ) )\n-->";
return FALSE;
}