本文整理汇总了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);
}
示例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;
示例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">