當前位置: 首頁>>代碼示例>>PHP>>正文


PHP DAOFactory::getCategoriasDAO方法代碼示例

本文整理匯總了PHP中DAOFactory::getCategoriasDAO方法的典型用法代碼示例。如果您正苦於以下問題:PHP DAOFactory::getCategoriasDAO方法的具體用法?PHP DAOFactory::getCategoriasDAO怎麽用?PHP DAOFactory::getCategoriasDAO使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在DAOFactory的用法示例。


在下文中一共展示了DAOFactory::getCategoriasDAO方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: seriesXcategoriasXpadre

 /**
  * Obtiene las categorías de un padre, y posteriormente las series de cada 
  * categoría. Antes de regresar el objeto JSON le pega las series a su 
  * respectiva categoría, para que en el cliente las tengan relacionadas en el 
  * mismo objeto json.
  * 
  * @param Integer $idPadre
  */
 public function seriesXcategoriasXpadre($idPadre)
 {
     $dao = DAOFactory::getCategoriasDAO();
     $categorias = $dao->queryByCategoriaPadre($idPadre);
     foreach ($categorias as $categoria) {
         $daoSerie = DAOFactory::getSerieDAO();
         $series = $daoSerie->querySeriesInCategoria($categoria->categoria);
         $categoria->series = $series;
     }
     print json_encode($categorias);
 }
開發者ID:roberto-pina,項目名稱:Vinculacion_Google_Facebook,代碼行數:19,代碼來源:Vod_api.class.php

示例2: Funcoes

<?php

$classPromocao = new Funcoes();
$resu = DAOFactory::getOfertasDAO()->queryByIdCategoria($_GET['categoria']);
$categoria = DAOFactory::getCategoriasDAO()->load($_GET['categoria']);
?>

<h5> Recife > <?php 
echo $categoria->nome;
?>
</h5>
<?php 
for ($i = 0; $i < count($resu); $i++) {
    if (isset($_GET['categoria'])) {
        if ($resu[$i]->principalcategoria == 1) {
            $id = $resu[$i]->id;
            $id_cliente = $resu[$i]->idCliente;
            $valorantigo = (double) $resu[$i]->valorantigo;
            $valor = (double) $resu[$i]->valor;
            $desconto = $resu[$i]->desconto;
            $qtd = $resu[$i]->qtd;
            $descricao = $resu[$i]->descricao;
            $promocao = $resu[$i]->promocao;
            $date = new DateTime($resu[$i]->datainicial);
            $datainicial = $date->format('d.m.Y');
            $date = new DateTime($resu[$i]->datafinal);
            $datafinal = $date->format('d.m.Y');
            $principal = $resu[$i]->principal;
            $ativo = $resu[$i]->ativo;
            $imagem1 = $resu[$i]->foto1;
            $imagem2 = $resu[$i]->foto2;
開發者ID:njr1466,項目名稱:akipom,代碼行數:31,代碼來源:promocaoprincipalcategoria.php

示例3: while

        $result = $class->listarOfertaEmpresa();
    }
} else {
    $result = $class->listarOfertaEmpresa();
}
while ($row = mysqli_fetch_assoc($result)) {
    $id = $row['id'];
    $promocao = $row['promocao'];
    $empresa = $row['empresa'];
    $principal = $row['principal'];
    $principalCategoria = $row['principalcategoria'];
    $imagem = $row['foto1'];
    $date = new DateTime($row['datafinal']);
    $datafinal = $date->format('d.m.Y');
    $transaction = new Transaction();
    $categoria = DAOFactory::getCategoriasDAO()->load($row['id_categoria']);
    ?>
       
                                                    <tr>
                                                        <td><div class="checkbox">
                                                                <label><input id="principal" name="principal" onclick="atualizarPrincipal(<?php 
    echo $id;
    ?>
)" type="checkbox" value="1" <?php 
    if ($principal == 1) {
        echo "checked='checked'";
    }
    ?>
></label>
                                                            </div></td>
                                                        <td><div class="checkbox">
開發者ID:njr1466,項目名稱:akipom,代碼行數:31,代碼來源:oferta.php


注:本文中的DAOFactory::getCategoriasDAO方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。