当前位置: 首页>>代码示例>>PHP>>正文


PHP UtilObjeto::limpar方法代码示例

本文整理汇总了PHP中UtilObjeto::limpar方法的典型用法代码示例。如果您正苦于以下问题:PHP UtilObjeto::limpar方法的具体用法?PHP UtilObjeto::limpar怎么用?PHP UtilObjeto::limpar使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在UtilObjeto的用法示例。


在下文中一共展示了UtilObjeto::limpar方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: excluir

 public function excluir()
 {
     $listar = UtilObjeto::listar("noticiasimagem", "where id_noticia = " . $this->id);
     if (is_array($listar)) {
         foreach ($listar as $id => $dados) {
             $objImagem = new NoticiasImagem();
             $objImagem->id = $id;
             $objImagem->carregar();
             if ($objImagem->excluir()) {
                 if (parent::excluir()) {
                     @unlink(PATHUPLOAD . 'noticias/' . $objImagem->imagem);
                 }
             }
         }
     }
     $this->carregar();
     if (parent::excluir()) {
         UtilObjeto::limpar("noticiastag", "where id_noticia = " . $this->id);
     }
     return true;
 }
开发者ID:lucaspedroso26,项目名称:ipanema_eventos,代码行数:21,代码来源:Noticias.php

示例2: strtolower

$nomeClasseG = "Cliente";
$nomeClasse = strtolower($nomeClasseG);
##########################
# carregar
##########################
if (isPost($idP)) {
    $obj = new $nomeClasseG();
    $obj->id = $_REQUEST['id'];
    $obj->carregar();
}
##########################
# cadastrar
##########################
if (isPost($_POST['ok'])) {
    $erro = false;
    UtilObjeto::limpar("clientefaz", "WHERE id_cliente = " . $idP);
    if (isPost($_POST['faz']) && is_array($_POST['faz'])) {
        foreach ($_POST['faz'] as $idPostCat) {
            if (!$obj->inserirFaz($idPostCat)) {
                $erro = true;
                break;
            }
        }
    }
    if (!$erro) {
        $msg = $msg_ok;
        $msgClass = "msgSucesso";
    } else {
        $msg = $msg_erro;
    }
}
开发者ID:lucaspedroso26,项目名称:ipanema_eventos,代码行数:31,代码来源:o-que-faco.php

示例3: strtolower

$titulo = "Notícias Tags";
$acao = "Gerenciar";
$pg_cadastrar = URLADMIN . "noticias-tags/cadastrar.php";
$pg_alterar = URLADMIN . "noticias-tags/alterar.php";
$pg_visualizar = "";
$msg_ok = "Registro Excluído!";
$msg_erro = "Erro ao excluir, verifique se existe tarefas vinculados a este usuário.";
$nomeClasse = "NoticiasTags";
$nomeTabela = strtolower($nomeClasse);
##########################
# excluir
##########################
if (isPost($_POST['idexcluir'])) {
    $obj = new $nomeClasse();
    $obj->id = $_POST['idexcluir'];
    UtilObjeto::limpar("noticiastag", "where id_tag = " . $obj->id);
    if ($obj->excluir()) {
        $msg = $msg_ok;
        $msgClass = "msgSucesso";
    } else {
        $msg = $msg_erro;
    }
}
if (!isPost($_POST['txtBusca'])) {
    # GERA A PAGINAÇÂO
    $Tabela = $nomeTabela;
    $Where = "order by titulo asc";
    $ItemPorPagina = 20;
    $UtilObjeto = 's';
    $Paginacao = Paginacao::geraPaginacao($UtilObjeto, $Tabela, $Where, $ItemPorPagina);
    # LISTA PAGINAÇÃO
开发者ID:lucaspedroso26,项目名称:ipanema_eventos,代码行数:31,代码来源:index.php

示例4: strtolower

$nomeClasseG = "NoticiasTags";
$nomeClasse = strtolower($nomeClasseG);
##########################
# carregar
##########################
if (isPost($idP)) {
    $obj = new $nomeClasseG();
    $obj->id = $_REQUEST['id'];
    $obj->carregar();
}
##########################
# cadastrar
##########################
if (isPost($_POST['ok'])) {
    $erro = false;
    UtilObjeto::limpar("noticiastag", "WHERE id_noticia = " . $idP);
    if (isPost($_POST['tags']) && is_array($_POST['tags'])) {
        foreach ($_POST['tags'] as $idPostCat) {
            if (!$obj->inserirTags($idPostCat)) {
                $erro = true;
                break;
            }
        }
    }
    if (!$erro) {
        $msg = $msg_ok;
        $msgClass = "msgSucesso";
    } else {
        $msg = $msg_erro;
    }
}
开发者ID:lucaspedroso26,项目名称:ipanema_eventos,代码行数:31,代码来源:tags.php


注:本文中的UtilObjeto::limpar方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。