本文整理汇总了PHP中Produto::findAll方法的典型用法代码示例。如果您正苦于以下问题:PHP Produto::findAll方法的具体用法?PHP Produto::findAll怎么用?PHP Produto::findAll使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Produto
的用法示例。
在下文中一共展示了Produto::findAll方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: notifyEstoque
function notifyEstoque()
{
$notifications = array();
$produtos = Produto::findAll();
foreach ($produtos as $produto) {
if ($produto->getStEstoque() == 'FT') {
$notifications[] = $produto->getIdProduto();
}
}
return $notifications;
}
示例2: toKG
<table id="estoque" class="table table-condensed table-hover">
<thead>
<tr>
<th>#</th>
<th>Produto</th>
<th>Quilos</th>
<th>Métros</th>
<th>Péças</th>
</tr>
</thead>
<tbody>
<?php
$produtos = Produto::findAll();
?>
<?php
foreach ($produtos as $produto) {
?>
<tr>
<td><?php
echo $produto->getIdProduto();
?>
</td>
<td><?php
echo $produto->getNmProduto();
?>
</td>
<td><?php
echo toKG($produto->getQtEstoque('KG'));
示例3:
</div>
<!-- /widget-header -->
<div class="widget-content">
<table class="table table-striped table-bordered">
<thead>
<tr>
<th class="span1"> # </th>
<th class="span6"> Nome do Produto</th>
<th class="span2"> Preço</th>
<th class="span2"> Quantidade</th>
<th class="td-actions"> </th>
</tr>
</thead>
<tbody>
<?php
foreach ($produto->findAll() as $key => $value) {
?>
<tr>
<td> <?php
echo $count++;
?>
</td>
<td><img src="../img/produtos/<?php
echo $value->url_foto_capa;
?>
" width="50"> <?php
echo $value->nome;
?>
</td>